Community
Participate
Working Groups
Configuration.isResourceSplittingEnabled always returns true, see the implementation, whatever happens, this will return true. Right? if (resourceSplitting != null) { return true; } resourceSplitting = new Boolean(false); IConfigurationElement[] rawExtensions = Platform.getExtensionRegistry() .getConfigurationElementsFor( "org.eclipse.emf.emfstore.client.persistence.options"); for (IConfigurationElement extension : rawExtensions) { resourceSplitting = new Boolean(extension.getAttribute("enabled")); } return true;
I debugged this when I tried to disabled resource loading...
Right ;)! I will fix it.
*** Bug 360169 has been marked as a duplicate of this bug. ***
Created attachment 204722 [details] proposed patch
Thanks for your help, the bug is fixed!