Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Adapters.java')
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Adapters.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Adapters.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Adapters.java
index 978eb3ed7..fd6b3ae59 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Adapters.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Adapters.java
@@ -7,7 +7,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
- * Lars Vogel <Lars.Vogel@vogella.com> - Bug 478685, 478864
+ * Lars Vogel <Lars.Vogel@vogella.com> - Bug 478685, 478864, 479849
*******************************************************************************/
package org.eclipse.core.runtime;
@@ -82,17 +82,6 @@ public class Adapters {
}
/**
- * Temporary method for the transition during the I-builds
- *
- * Planned to be deleted after the transition
- *
- * @noreference
- */
- public static <T> T getAdapter(Object sourceObject, Class<T> adapter, boolean allowActivation) {
- return adapt(sourceObject, adapter, allowActivation);
- }
-
- /**
* If it is possible to adapt the given object to the given type, this
* returns the adapter.
* <p>

Back to the top