| Summary: | resource splitting always enabled | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Modeling] EMFStore | Reporter: | Andre Boehlke <ab> | ||||
| Component: | Clientcore | Assignee: | Maximilian Koegel <mkoegel> | ||||
| Status: | CLOSED FIXED | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | corrmage, eclipse, mkoegel | ||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
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! |
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;