View | Details | Raw Unified | Return to bug 57434
Collapse All | Expand All

(-)src/main/java/org/apache/taglibs/standard/lang/jstl/ELEvaluator.java (+4 lines)
Lines 251-256 Link Here
251
     */
251
     */
252
    public Object parseExpressionString(String pExpressionString)
252
    public Object parseExpressionString(String pExpressionString)
253
            throws ELException {
253
            throws ELException {
254
        // https://bz.apache.org/bugzilla/show_bug.cgi?id=57434
255
        // create a copy of the flag to prevent the value from being changed during the method run by a different thread
256
        final boolean mBypassCache = this.mBypassCache;
257
254
        // See if it's an empty String
258
        // See if it's an empty String
255
        if (pExpressionString.length() == 0) {
259
        if (pExpressionString.length() == 0) {
256
            return "";
260
            return "";

Return to bug 57434