Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Goubet2016-06-07 09:33:54 +0000
committerLaurent Delaigue2016-06-07 12:22:21 +0000
commit47b7b52b3c1798a536783d652c38fcf4b03dd5d6 (patch)
tree6e9371fbeab3660c6c7777e84dfbce2eb5640fe0 /plugins
parentf31cf0e1f9a6a6a330374a705c0c5ffb32caae3a (diff)
downloadorg.eclipse.emf.compare-47b7b52b3c1798a536783d652c38fcf4b03dd5d6.tar.gz
org.eclipse.emf.compare-47b7b52b3c1798a536783d652c38fcf4b03dd5d6.tar.xz
org.eclipse.emf.compare-47b7b52b3c1798a536783d652c38fcf4b03dd5d6.zip
[495586] Disable XML handler cache to prevent erroneous error reports
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java b/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java
index 69b9559cb..8f550ab11 100644
--- a/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java
+++ b/plugins/org.eclipse.emf.compare.ide/src/org/eclipse/emf/compare/ide/internal/utils/NotifyingParserPool.java
@@ -61,7 +61,7 @@ public class NotifyingParserPool extends XMLParserPoolImpl {
* containment tree.
*/
public NotifyingParserPool(boolean containmentOnly) {
- super(true);
+ super(false);
this.proxyListeners = new ListenerList();
this.namespaceDeclarationListeners = new ListenerList();
this.containmentOnly = containmentOnly;

Back to the top