1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-05-19 03:57:51 +00:00
parent 5e0dd6ee10
commit fe9af4f721

View file

@ -289,16 +289,16 @@ public class IndexerPreferences {
}; };
} }
private static Preferences getDefaultPreferences() { private static Preferences getInstancePreferences() {
return DefaultScope.INSTANCE.getNode(QUALIFIER).node(INDEXER_NODE); return InstanceScope.INSTANCE.getNode(QUALIFIER).node(INDEXER_NODE);
} }
private static Preferences getConfigurationPreferences() { private static Preferences getConfigurationPreferences() {
return ConfigurationScope.INSTANCE.getNode(QUALIFIER).node(INDEXER_NODE); return ConfigurationScope.INSTANCE.getNode(QUALIFIER).node(INDEXER_NODE);
} }
private static Preferences getInstancePreferences() { private static Preferences getDefaultPreferences() {
return InstanceScope.INSTANCE.getNode(QUALIFIER).node(INDEXER_NODE); return DefaultScope.INSTANCE.getNode(QUALIFIER).node(INDEXER_NODE);
} }
public static Preferences getProjectPreferences(IProject project) { public static Preferences getProjectPreferences(IProject project) {