Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/cleanup/XMLCleanupPreferencesImpl.java')
-rw-r--r--bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/cleanup/XMLCleanupPreferencesImpl.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/cleanup/XMLCleanupPreferencesImpl.java b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/cleanup/XMLCleanupPreferencesImpl.java
index c8dbb06213..f09292c065 100644
--- a/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/cleanup/XMLCleanupPreferencesImpl.java
+++ b/bundles/org.eclipse.wst.xml.core/src/org/eclipse/wst/xml/core/cleanup/XMLCleanupPreferencesImpl.java
@@ -13,10 +13,9 @@
package org.eclipse.wst.xml.core.cleanup;
import org.eclipse.core.runtime.Preferences;
-import org.eclipse.wst.sse.core.ModelPlugin;
+import org.eclipse.wst.sse.core.internal.SSECorePlugin;
import org.eclipse.wst.xml.core.XMLPreferenceNames;
-
/**
* @deprecated renamed to StructuredCleanupPreferences
*
@@ -73,7 +72,7 @@ public class XMLCleanupPreferencesImpl implements XMLCleanupPreferences {
public Preferences getPreferences() {
if (fPreferences == null) {
- fPreferences = ModelPlugin.getDefault().getPluginPreferences();
+ fPreferences = SSECorePlugin.getDefault().getPluginPreferences();
}
return fPreferences;
}

Back to the top