Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-04-26 13:20:03 +0000
committerLars Vogel2018-04-26 13:20:03 +0000
commit4806f8e79363be905ed889bd5e5739475a2d6a54 (patch)
tree9055279a44f1079359bc393e3933f328f4c7c1cd
parent155757cb1cd55c30c0c49588bf049593e386b27d (diff)
downloadrt.equinox.bundles-4806f8e79363be905ed889bd5e5739475a2d6a54.tar.gz
rt.equinox.bundles-4806f8e79363be905ed889bd5e5739475a2d6a54.tar.xz
rt.equinox.bundles-4806f8e79363be905ed889bd5e5739475a2d6a54.zip
Minor cleanup in IExtension
Adds missing @Deprecate for getNamespace Removes silly non-Java Change-Id: Ie833b36b396fe8b233cc3cb24880e702e32da45b Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtension.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtension.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtension.java
index 1a91f763c..91734025b 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtension.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtension.java
@@ -95,6 +95,7 @@ public interface IExtension {
* elements belonging to the <code>org.abc</code> namespace would fall into this category.
* </p>
*/
+ @Deprecated
public String getNamespace() throws InvalidRegistryObjectException;
/**
@@ -185,9 +186,6 @@ public interface IExtension {
*/
public String getUniqueIdentifier() throws InvalidRegistryObjectException;
- /* (non-javadoc)
- * @see Object#equals(java.lang.Object)
- */
@Override
public boolean equals(Object o);

Back to the top