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:
authordavid_williams2005-06-07 21:28:03 +0000
committerdavid_williams2005-06-07 21:28:03 +0000
commite1391dc16da11ca1d1bf33952377ce5dc0dac6c9 (patch)
treef1bcf0562bb71b4b2511e1a1eb8cfc3ee4fba26e /bundles/org.eclipse.wst.html.ui/src-html-validation/org
parent5764b85452c1e95264062b152dc7b27479860138 (diff)
downloadwebtools.sourceediting-e1391dc16da11ca1d1bf33952377ce5dc0dac6c9.tar.gz
webtools.sourceediting-e1391dc16da11ca1d1bf33952377ce5dc0dac6c9.tar.xz
webtools.sourceediting-e1391dc16da11ca1d1bf33952377ce5dc0dac6c9.zip
[98586] remove some old strings
Diffstat (limited to 'bundles/org.eclipse.wst.html.ui/src-html-validation/org')
-rw-r--r--bundles/org.eclipse.wst.html.ui/src-html-validation/org/eclipse/wst/html/internal/validation/TaskListUtility.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.html.ui/src-html-validation/org/eclipse/wst/html/internal/validation/TaskListUtility.java b/bundles/org.eclipse.wst.html.ui/src-html-validation/org/eclipse/wst/html/internal/validation/TaskListUtility.java
index ffdeb795e7..dcc3c5a2f6 100644
--- a/bundles/org.eclipse.wst.html.ui/src-html-validation/org/eclipse/wst/html/internal/validation/TaskListUtility.java
+++ b/bundles/org.eclipse.wst.html.ui/src-html-validation/org/eclipse/wst/html/internal/validation/TaskListUtility.java
@@ -16,6 +16,7 @@ import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.wst.html.ui.internal.HTMLUIPlugin;
import org.eclipse.wst.validation.internal.provisional.core.IMessage;
/**
@@ -32,7 +33,7 @@ import org.eclipse.wst.validation.internal.provisional.core.IMessage;
*/
public class TaskListUtility {
// private static final String PLUGIN_ID = ValidationPlugin.PLUGIN_ID;
- private static final String PLUGIN_ID = "com.ibm.etools.validation";//$NON-NLS-1$
+ private static final String PLUGIN_ID = HTMLUIPlugin.ID;
private static final String VALIDATION_MARKER = PLUGIN_ID + ".problemmarker"; //$NON-NLS-1$ // The extension which is used to add validation markers to the task list
private static final String VALIDATION_MARKER_OWNER = "owner"; //$NON-NLS-1$ // The IValidator who owns the IMarker on the task list
private static final String VALIDATION_MARKER_SEVERITY = "validationSeverity"; //$NON-NLS-1$ // one of the IMessage values

Back to the top