Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbateman2009-03-12 17:19:13 +0000
committercbateman2009-03-12 17:19:13 +0000
commit997f7d33af182cb3ee4d5df1c83bcd099887200f (patch)
treede7319b5bebdbfb759c7e726d5ea6d17fdb115f0
parenta9a91a94474412ae64b89304985b9a9d814f663a (diff)
downloadwebtools.jsf-997f7d33af182cb3ee4d5df1c83bcd099887200f.tar.gz
webtools.jsf-997f7d33af182cb3ee4d5df1c83bcd099887200f.tar.xz
webtools.jsf-997f7d33af182cb3ee4d5df1c83bcd099887200f.zip
Fix for regression on 262818 -- JSF Attribute Validator needs to handle new JSP quote type.
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/validation/internal/strategy/AttributeValidatingStrategy.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/validation/internal/strategy/AttributeValidatingStrategy.java b/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/validation/internal/strategy/AttributeValidatingStrategy.java
index e981715f7..c9f2781a3 100644
--- a/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/validation/internal/strategy/AttributeValidatingStrategy.java
+++ b/jsf/plugins/org.eclipse.jst.jsf.core/src/org/eclipse/jst/jsf/validation/internal/strategy/AttributeValidatingStrategy.java
@@ -311,8 +311,8 @@ AbstractXMLViewValidationStrategy
final ITextRegion vblOpen = regionList.get(1);
if ((openQuote.getType() == DOMJSPRegionContexts.XML_TAG_ATTRIBUTE_VALUE_DQUOTE || openQuote
- .getType() == DOMJSPRegionContexts.JSP_VBL_DQUOTE /*||
- openQuote.getType() == DOMJSPRegionContexts.JSP_TAG_ATTRIBUTE_VALUE_DQUOTE*/)
+ .getType() == DOMJSPRegionContexts.JSP_VBL_DQUOTE ||
+ openQuote.getType() == DOMJSPRegionContexts.JSP_TAG_ATTRIBUTE_VALUE_DQUOTE)
&& vblOpen.getType() == DOMJSPRegionContexts.JSP_VBL_OPEN)
{
boolean foundClosingQuote = false;

Back to the top