Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-12-17 06:13:46 +0000
committerslewis2009-12-17 06:13:46 +0000
commit7b608ff9eabf0a426b7b49d6876331485e460af5 (patch)
tree53959dc651cf277fcbdb751bdbb1bb1ee0f89473 /framework/bundles/org.eclipse.ecf/src
parentf6a9cb8504f94fb066f8cbd3af1b892e9c6a022c (diff)
downloadorg.eclipse.ecf-7b608ff9eabf0a426b7b49d6876331485e460af5.tar.gz
org.eclipse.ecf-7b608ff9eabf0a426b7b49d6876331485e460af5.tar.xz
org.eclipse.ecf-7b608ff9eabf0a426b7b49d6876331485e460af5.zip
Removed getSupportedIntents from IContainerInstantiator
Diffstat (limited to 'framework/bundles/org.eclipse.ecf/src')
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/BaseContainerInstantiator.java4
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/IContainerInstantiator.java2
2 files changed, 0 insertions, 6 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/BaseContainerInstantiator.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/BaseContainerInstantiator.java
index f6ce60e03..cb27c8d89 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/BaseContainerInstantiator.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/BaseContainerInstantiator.java
@@ -79,8 +79,4 @@ public class BaseContainerInstantiator implements IContainerInstantiator {
return EMPTY_CLASS_ARRAY;
}
- public String[] getSupportedIntents(ContainerTypeDescription description) {
- return EMPTY_STRING_ARRAY;
- }
-
}
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/IContainerInstantiator.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/IContainerInstantiator.java
index bd2ca1239..eb4bf353c 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/IContainerInstantiator.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/provider/IContainerInstantiator.java
@@ -119,6 +119,4 @@ public interface IContainerInstantiator {
*/
public Class[][] getSupportedParameterTypes(ContainerTypeDescription description);
- public String[] getSupportedIntents(ContainerTypeDescription description);
-
} \ No newline at end of file

Back to the top