diff --git a/plugins/com.gwtplugins.gdt.eclipse.suite/META-INF/MANIFEST.MF b/plugins/com.gwtplugins.gdt.eclipse.suite/META-INF/MANIFEST.MF index 602d7fd1..a171eb2d 100644 --- a/plugins/com.gwtplugins.gdt.eclipse.suite/META-INF/MANIFEST.MF +++ b/plugins/com.gwtplugins.gdt.eclipse.suite/META-INF/MANIFEST.MF @@ -41,6 +41,5 @@ Require-Bundle: org.eclipse.equinox.common, system.bundle, org.eclipse.core.runtime, - com.gwtplugins.gdt.eclipse.apiclientlib, - javax.inject;bundle-version="1.0.0" + com.gwtplugins.gdt.eclipse.apiclientlib Import-Package: org.eclipse.core.runtime.preferences diff --git a/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/wizards/WebAppProjectCreator.java b/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/wizards/WebAppProjectCreator.java index e23cf080..30cf7e55 100644 --- a/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/wizards/WebAppProjectCreator.java +++ b/plugins/com.gwtplugins.gdt.eclipse.suite/src/com/google/gdt/eclipse/suite/wizards/WebAppProjectCreator.java @@ -83,8 +83,6 @@ import java.util.Arrays; import java.util.List; -import javax.inject.Inject; - /** * Web application project creator. */ @@ -387,6 +385,7 @@ private void setGwtSdk(Sdk gwtSdk) { this.gwtSdk = gwtSdk; } + @Override public Sdk getGwtSdk() { return gwtSdk; } @@ -409,11 +408,6 @@ private void includeExtensionPartipants() throws CoreException { } } - @Inject - public void doSomething(IExtensionRegistry registry) { - registry.getConfigurationElementsFor("com.gwtplugins.gdt.eclipse.suite.webAppCreatorParticipant"); - } - public List getContainerPaths() { return containerPaths; }