Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2007-04-19 05:24:05 +0000
committernitind2007-04-19 05:24:05 +0000
commitd4c4212b212e0e1f1e5bb945e99af195b04c128c (patch)
treef04ae9478ece10c3f9058c8fcfb4c70adcfdcb49 /bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core
parentcd6c826128e33b2255d7861dc27860562670f057 (diff)
downloadwebtools.sourceediting-d4c4212b212e0e1f1e5bb945e99af195b04c128c.tar.gz
webtools.sourceediting-d4c4212b212e0e1f1e5bb945e99af195b04c128c.tar.xz
webtools.sourceediting-d4c4212b212e0e1f1e5bb945e99af195b04c128c.zip
[155907] Add support for jsp:attribute from JSP 2.0 specification
Diffstat (limited to 'bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core')
-rw-r--r--bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/contenttype/DeploymentDescriptorPropertyCache.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/contenttype/DeploymentDescriptorPropertyCache.java b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/contenttype/DeploymentDescriptorPropertyCache.java
index 0f6c327407..3e9ac49cfe 100644
--- a/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/contenttype/DeploymentDescriptorPropertyCache.java
+++ b/bundles/org.eclipse.jst.jsp.core/src/org/eclipse/jst/jsp/core/internal/contenttype/DeploymentDescriptorPropertyCache.java
@@ -64,12 +64,12 @@ public class DeploymentDescriptorPropertyCache {
private static class DeploymentDescriptor {
PropertyGroup[] groups;
long modificationStamp;
- Float version = new Float(1f);
+ Float version = new Float(defaultWebAppVersion);
}
private static class FacetCore {
long modificationStamp;
- float version = 1f;
+ float version = defaultWebAppVersion;
}
/**

Back to the top