Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNitin Dahyabhai2019-04-03 13:01:25 +0000
committerNitin Dahyabhai2019-04-03 13:02:02 +0000
commit899671804d3f482e01beafdc126ea30ea5222f30 (patch)
treef2ab26a6e023ead4816d3eac4726549225c59ad3
parentd75321b1616b7ee3c9caf8c1d1db40cc7003f215 (diff)
downloadwebtools.common-899671804d3f482e01beafdc126ea30ea5222f30.tar.gz
webtools.common-899671804d3f482e01beafdc126ea30ea5222f30.tar.xz
webtools.common-899671804d3f482e01beafdc126ea30ea5222f30.zip
[545746] remove unused singleton field
Signed-off-by: Nitin Dahyabhai <nitind@us.ibm.com>
-rw-r--r--tests/org.eclipse.wst.common.tests.collector/collector/org/eclipse/wst/common/tests/collector/TestCollectorPlugin.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/org.eclipse.wst.common.tests.collector/collector/org/eclipse/wst/common/tests/collector/TestCollectorPlugin.java b/tests/org.eclipse.wst.common.tests.collector/collector/org/eclipse/wst/common/tests/collector/TestCollectorPlugin.java
index c10c3945a..65660bb10 100644
--- a/tests/org.eclipse.wst.common.tests.collector/collector/org/eclipse/wst/common/tests/collector/TestCollectorPlugin.java
+++ b/tests/org.eclipse.wst.common.tests.collector/collector/org/eclipse/wst/common/tests/collector/TestCollectorPlugin.java
@@ -18,12 +18,13 @@ import org.osgi.framework.BundleContext;
public class TestCollectorPlugin extends Plugin {
public static String PLUGIN_ID = "org.eclipse.wst.common.tests.collector";
- public static TestCollectorPlugin instance = null;
+ /**
+ * @deprecated - no one is known to use this, and no one should
+ */
public IExtensionPoint dataModelVerifierExt = null;
public void start(BundleContext context) throws Exception {
super.start(context);
dataModelVerifierExt = Platform.getExtensionRegistry().getExtensionPoint(PLUGIN_ID, "DataModelVerifier");
}
-
}

Back to the top