Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornsandonato2010-06-29 17:56:10 +0000
committernsandonato2010-06-29 17:56:10 +0000
commit2cc71a642c0339b9f941df7bbf71e35354b4f937 (patch)
tree127f08035be646a1990c03fe0ec06670ccb4e818
parent88bb02c9086ea9355d259714cc4a61ee1c381f96 (diff)
downloadwebtools.sourceediting-2cc71a642c0339b9f941df7bbf71e35354b4f937.tar.gz
webtools.sourceediting-2cc71a642c0339b9f941df7bbf71e35354b4f937.tar.xz
webtools.sourceediting-2cc71a642c0339b9f941df7bbf71e35354b4f937.zip
[317062] Type mismatch: cannot convert from boolean to String
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/jspel/ELGeneratorVisitor.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/jspel/ELGeneratorVisitor.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/jspel/ELGeneratorVisitor.java
index 7bb6633371..f6ea3daec3 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/jspel/ELGeneratorVisitor.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/jspel/ELGeneratorVisitor.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2006 BEA Systems and others.
+ * Copyright (c) 2005, 2010 BEA Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -58,7 +58,7 @@ public class ELGeneratorVisitor implements JSPELParserVisitor {
"java.util.Map requestScope = null;" + ENDL + //$NON-NLS-1$
"java.util.Map sessionScope = null;" + ENDL + //$NON-NLS-1$
"java.util.Map applicationScope = null;" + ENDL + //$NON-NLS-1$
- "return \"\"+"; //$NON-NLS-1$
+ "return \"\"+( "; //$NON-NLS-1$
private static final String fExpressionHeader2_param = "()" + ENDL + //$NON-NLS-1$
"\t\tthrows java.io.IOException, javax.servlet.ServletException, javax.servlet.jsp.JspException {" + ENDL + //$NON-NLS-1$
@@ -73,7 +73,7 @@ public class ELGeneratorVisitor implements JSPELParserVisitor {
"java.util.Map<String, Object> requestScope = null;" + ENDL + //$NON-NLS-1$
"java.util.Map<String, Object> sessionScope = null;" + ENDL + //$NON-NLS-1$
"java.util.Map<String, Object> applicationScope = null;" + ENDL + //$NON-NLS-1$
- "return \"\"+"; //$NON-NLS-1$
+ "return \"\"+( "; //$NON-NLS-1$
private static final String fJspImplicitObjects[] = { "pageContext" }; //$NON-NLS-1$
@@ -92,7 +92,7 @@ public class ELGeneratorVisitor implements JSPELParserVisitor {
}
}
- private static final String fFooter = " ;" + ENDL + "}" + ENDL; //$NON-NLS-1$ //$NON-NLS-2$
+ private static final String fFooter = " );" + ENDL + "}" + ENDL; //$NON-NLS-1$ //$NON-NLS-2$
private StringBuffer fResult;
private Map fCodeMap;

Back to the top