Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCamille Letavernier2013-12-06 15:58:24 +0000
committerCamille Letavernier2013-12-06 15:58:24 +0000
commit10b262a6d543fed1b9e5f0f4501dd375f9a0a6d9 (patch)
treed00986a821c8754964da36efab3da08f23dba741 /tests/junit/plugins
parent3715eae962095b9ae3e78c955332c8ea4d110b75 (diff)
downloadorg.eclipse.papyrus-10b262a6d543fed1b9e5f0f4501dd375f9a0a6d9.tar.gz
org.eclipse.papyrus-10b262a6d543fed1b9e5f0f4501dd375f9a0a6d9.tar.xz
org.eclipse.papyrus-10b262a6d543fed1b9e5f0f4501dd375f9a0a6d9.zip
423432: [Performances - Properties view] Improve properties view loading
on startup https://bugs.eclipse.org/bugs/show_bug.cgi?id=423432 Fix compilation issues from previous commit
Diffstat (limited to 'tests/junit/plugins')
-rw-r--r--tests/junit/plugins/customization/org.eclipse.papyrus.customization.properties.tests/src/org/eclipse/papyrus/customization/properties/tests/qvt/TransformationsTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/junit/plugins/customization/org.eclipse.papyrus.customization.properties.tests/src/org/eclipse/papyrus/customization/properties/tests/qvt/TransformationsTests.java b/tests/junit/plugins/customization/org.eclipse.papyrus.customization.properties.tests/src/org/eclipse/papyrus/customization/properties/tests/qvt/TransformationsTests.java
index a99b76a75c7..d7b08984e1c 100644
--- a/tests/junit/plugins/customization/org.eclipse.papyrus.customization.properties.tests/src/org/eclipse/papyrus/customization/properties/tests/qvt/TransformationsTests.java
+++ b/tests/junit/plugins/customization/org.eclipse.papyrus.customization.properties.tests/src/org/eclipse/papyrus/customization/properties/tests/qvt/TransformationsTests.java
@@ -121,7 +121,7 @@ public class TransformationsTests {
EPackage ecorePackage = (EPackage)loadEMFModel(packageURI);
ModelExtent inPackage = new BasicModelExtent(Collections.singletonList(ecorePackage));
- PropertiesRoot root = ConfigurationManager.instance.getPropertiesRoot();
+ PropertiesRoot root = ConfigurationManager.getInstance().getPropertiesRoot();
ModelExtent inRoot = new BasicModelExtent(Collections.singletonList(root));
LinkedList<ModelExtent> result = new LinkedList<ModelExtent>();
@@ -172,7 +172,7 @@ public class TransformationsTests {
}
ModelExtent inUml = new BasicModelExtent(Collections.singletonList(umlContext));
- PropertiesRoot root = ConfigurationManager.instance.getPropertiesRoot();
+ PropertiesRoot root = ConfigurationManager.getInstance().getPropertiesRoot();
ModelExtent inRoot = new BasicModelExtent(Collections.singletonList(root));
LinkedList<ModelExtent> result = new LinkedList<ModelExtent>();

Back to the top