Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
STS-1755, STS-1791: Disabled the non-locking classloader default on w…
Browse files Browse the repository at this point in the history
…indows so we can work on the root cause
  • Loading branch information
cdupuis committed Jun 23, 2011
1 parent 8f2c4ee commit fe6c753
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -104,9 +104,8 @@ public void start(BundleContext context) throws Exception {
typeStructureCache.startup();
// install default for incremtal compilation
plugin.getPluginPreferences().setDefault(USE_CHANGE_DETECTION_IN_JAVA_FILES, true);
// make non-locking classloaders the default on windows
plugin.getPluginPreferences().setDefault(USE_NON_LOCKING_CLASSLOADER,
Platform.OS_WIN32.equals(Platform.getOS()));
// non.locking classloader is not enabled by default
plugin.getPluginPreferences().setDefault(USE_NON_LOCKING_CLASSLOADER, false);
}

@Override
Expand Down

0 comments on commit fe6c753

Please sign in to comment.