Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-10-15 11:42:28 +0000
committerStefan Xenos2015-10-22 01:51:06 +0000
commit67ce2f5aa84ca7bb33cee61de3108eb2b0001ce7 (patch)
tree265f12eb61d679486cac18f2a7f58395e9b9a7c9 /bundles/org.eclipse.equinox.common/src
parent199a75b71db51b997a8c396bb404c3c5e5d12e13 (diff)
downloadrt.equinox.bundles-67ce2f5aa84ca7bb33cee61de3108eb2b0001ce7.tar.gz
rt.equinox.bundles-67ce2f5aa84ca7bb33cee61de3108eb2b0001ce7.tar.xz
rt.equinox.bundles-67ce2f5aa84ca7bb33cee61de3108eb2b0001ce7.zip
Bug 479849 - Remove temporary Adapters#getAdapter() which we renamed to
Adapters#adapt Change-Id: I78bce4f80634917595dbe651a8e132ecc7cb1694 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.common/src')
-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