Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2010-05-27 01:50:33 +0000
committernitind2010-05-27 01:50:33 +0000
commitab87166837082ac42050e31c67653b0f97bebbcd (patch)
tree7d128a0b394f9ed80a7ffb02526ec262ab2a401f /bundles/org.eclipse.jst.jsp.core
parentedfef1eb36296a6252cec139b8a3129947b325f9 (diff)
downloadwebtools.sourceediting-ab87166837082ac42050e31c67653b0f97bebbcd.tar.gz
webtools.sourceediting-ab87166837082ac42050e31c67653b0f97bebbcd.tar.xz
webtools.sourceediting-ab87166837082ac42050e31c67653b0f97bebbcd.zip
[314385] XML-formatted JSP validation doesn't see variables from includes
Diffstat (limited to 'bundles/org.eclipse.jst.jsp.core')
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/java/XMLJSPRegionHelper.java4
1 files changed, 2 insertions, 2 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 0ed95c80bd..e1f70e3835 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 IBM Corporation 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
@@ -205,7 +205,7 @@ class XMLJSPRegionHelper implements StructuredDocumentRegionHandler {
// IS the opening tag
// handle include and directive
- if (fTagname != null && sdRegion.getFirstRegion().getType() == DOMJSPRegionContexts.JSP_DIRECTIVE_OPEN) {
+ if (fTagname != null) {
processOtherRegions(sdRegion);
}

Back to the top