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:
authornitind2009-03-12 04:45:09 +0000
committernitind2009-03-12 04:45:09 +0000
commit5a8867b2a4a52ac5fb29dbb4f32d7643a5360ca0 (patch)
tree566e1f4faf86236fbb0b38d33637e393ad82a199 /bundles/org.eclipse.wst.html.core/src/org
parent74cbc6b44a613c2234d08d65804df1dade65182f (diff)
downloadwebtools.sourceediting-5a8867b2a4a52ac5fb29dbb4f32d7643a5360ca0.tar.gz
webtools.sourceediting-5a8867b2a4a52ac5fb29dbb4f32d7643a5360ca0.tar.xz
webtools.sourceediting-5a8867b2a4a52ac5fb29dbb4f32d7643a5360ca0.zip
[nobug] no more Error on missing start tag
Diffstat (limited to 'bundles/org.eclipse.wst.html.core/src/org')
-rw-r--r--bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/preferences/HTMLCorePreferenceInitializer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/preferences/HTMLCorePreferenceInitializer.java b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/preferences/HTMLCorePreferenceInitializer.java
index b5fd700f6c..03fd749ddc 100644
--- a/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/preferences/HTMLCorePreferenceInitializer.java
+++ b/bundles/org.eclipse.wst.html.core/src/org/eclipse/wst/html/core/internal/preferences/HTMLCorePreferenceInitializer.java
@@ -86,7 +86,7 @@ public class HTMLCorePreferenceInitializer extends AbstractPreferenceInitializer
node.putInt(HTMLCorePreferenceNames.ELEM_INVALID_NAME, ValidationMessage.ERROR);
node.putInt(HTMLCorePreferenceNames.ELEM_START_INVALID_CASE, ValidationMessage.WARNING);
node.putInt(HTMLCorePreferenceNames.ELEM_END_INVALID_CASE, ValidationMessage.ERROR);
- node.putInt(HTMLCorePreferenceNames.ELEM_MISSING_START, ValidationMessage.ERROR);
+ node.putInt(HTMLCorePreferenceNames.ELEM_MISSING_START, ValidationMessage.WARNING);
node.putInt(HTMLCorePreferenceNames.ELEM_MISSING_END, ValidationMessage.WARNING);
node.putInt(HTMLCorePreferenceNames.ELEM_UNNECESSARY_END, ValidationMessage.WARNING);
node.putInt(HTMLCorePreferenceNames.ELEM_INVALID_DIRECTIVE, ValidationMessage.ERROR);

Back to the top