Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/InstanceScope.java')
-rw-r--r--bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/InstanceScope.java12
1 files changed, 3 insertions, 9 deletions
diff --git a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/InstanceScope.java b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/InstanceScope.java
index f085b72dd..b98052f8c 100644
--- a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/InstanceScope.java
+++ b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/runtime/preferences/InstanceScope.java
@@ -57,9 +57,7 @@ public final class InstanceScope extends AbstractScope {
super();
}
- /*
- * @see org.eclipse.core.runtime.preferences.IScopeContext#getLocation()
- */
+
@Override
public IPath getLocation() {
// Return null. The instance location usually corresponds to the state
@@ -67,17 +65,13 @@ public final class InstanceScope extends AbstractScope {
return null;
}
- /*
- * @see org.eclipse.core.runtime.preferences.IScopeContext#getName()
- */
+
@Override
public String getName() {
return SCOPE;
}
- /* (non-Javadoc)
- * @see org.eclipse.core.runtime.preferences.IScopeContext#getNode(java.lang.String)
- */
+
@Override
public IEclipsePreferences getNode(String qualifier) {
return super.getNode(qualifier);

Back to the top