[xbase][editor] Reduce dead-lock potential

This commit is contained in:
Sebastian Zarnekow 2013-02-12 17:24:54 +01:00
parent 5e26a58a7c
commit c94c1e452d

View file

@ -50,6 +50,13 @@ public class DerivedStateAwareResource extends LazyLinkingResource {
eSetDeliver(true);
}
}
return doGetContents();
}
/**
* @since 2.4
*/
protected EList<EObject> doGetContents() {
return super.getContents();
}