Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2010-05-27 17:26:11 +0000
committernitind2010-05-27 17:26:11 +0000
commit4a47b1750345ec9eaf14c0d55b2edd345a0e8948 (patch)
treee94a073e56ff1230478b55066e640877dcb1bb23
parentab87166837082ac42050e31c67653b0f97bebbcd (diff)
downloadwebtools.sourceediting-4a47b1750345ec9eaf14c0d55b2edd345a0e8948.tar.gz
webtools.sourceediting-4a47b1750345ec9eaf14c0d55b2edd345a0e8948.tar.xz
webtools.sourceediting-4a47b1750345ec9eaf14c0d55b2edd345a0e8948.zip
[314385] (supplement to) XML-formatted JSP validation doesn't see variables from includes
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/XMLJSPRegionHelper.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/XMLJSPRegionHelper.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/XMLJSPRegionHelper.java
index e1f70e3835..6ba323860a 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/XMLJSPRegionHelper.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/XMLJSPRegionHelper.java
@@ -394,10 +394,6 @@ class XMLJSPRegionHelper implements StructuredDocumentRegionHandler {
String fileLocation = getAttributeValue("file", sdRegion); //$NON-NLS-1$
this.fTranslator.handleIncludeFile(fileLocation);
}
- else if (isPossibleCustomTag(fTagname)) {
- // this custom tag may define variables
- this.fTranslator.addTaglibVariables(fTagname, sdRegion);
- }
else if (isTaglibDirective(fTagname)) {
// also add the ones created here to the parent document
String prefix = getAttributeValue("prefix", sdRegion); //$NON-NLS-1$

Back to the top