Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2012-07-04 18:53:39 +0000
committerJohn Arthorne2012-07-04 18:53:39 +0000
commitd434dc1c887cd05b0f7326ca20b2aa721b915028 (patch)
treec88f5f5518be0fe0c894f353dd9ae4b4f2fc3a86
parentc883f84aa58838d45a962a89332610c262121c9f (diff)
downloadrt.equinox.bundles-d434dc1c887cd05b0f7326ca20b2aa721b915028.tar.gz
rt.equinox.bundles-d434dc1c887cd05b0f7326ca20b2aa721b915028.tar.xz
rt.equinox.bundles-d434dc1c887cd05b0f7326ca20b2aa721b915028.zip
-rw-r--r--bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java
index 920345974..1e98e4ed5 100644
--- a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java
+++ b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/EclipsePreferences.java
@@ -369,7 +369,6 @@ public class EclipsePreferences implements IEclipsePreferences, IScope {
String fullPath = addSeparator ? prefix + PATH_SEPARATOR + child.name() : child.name();
child.convertToProperties(result, fullPath);
}
- PreferencesService.getDefault().shareStrings();
return result;
}
@@ -428,6 +427,7 @@ public class EclipsePreferences implements IEclipsePreferences, IScope {
synchronized (childAndPropertyLock) {
internalFlush();
}
+ PreferencesService.getDefault().shareStrings();
}
/*

Back to the top