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

(-)java/org/apache/el/ValueExpressionLiteral.java (-1 / +5 lines)
Lines 35-40 Link Here
35
    private static final long serialVersionUID = 1L;
35
    private static final long serialVersionUID = 1L;
36
36
37
    private Object value;
37
    private Object value;
38
    private String valueString;
38
39
39
    private Class<?> expectedType;
40
    private Class<?> expectedType;
40
41
Lines 89-95 Link Here
89
90
90
    @Override
91
    @Override
91
    public String getExpressionString() {
92
    public String getExpressionString() {
92
        return (this.value != null) ? this.value.toString() : null;
93
        if (this.valueString == null) {
94
            this.valueString = (this.value != null) ? this.value.toString() : null;
95
        }
96
        return this.valueString;
93
    }
97
    }
94
98
95
    @Override
99
    @Override

Return to bug 58327