Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2015-07-13 09:19:13 +0000
committerTom Schindl2015-07-13 09:19:13 +0000
commitf24c581bce1091fa3f7f0d9e71428439e36364ec (patch)
tree52a9d935eb7096781966f2f7ad007ab2b38b8759 /bundles/tooling
parente8caf3aa05bd400092e3c00b2613864923e728cf (diff)
downloadorg.eclipse.efxclipse-f24c581bce1091fa3f7f0d9e71428439e36364ec.tar.gz
org.eclipse.efxclipse-f24c581bce1091fa3f7f0d9e71428439e36364ec.tar.xz
org.eclipse.efxclipse-f24c581bce1091fa3f7f0d9e71428439e36364ec.zip
Bug 472472 - 3x Wizard should not add javafx imports
Diffstat (limited to 'bundles/tooling')
-rwxr-xr-xbundles/tooling/org.eclipse.fx.ide.pde.ui/src/org/eclipse/fx/ide/pde/ui/E3ViewPartClassWizard.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/tooling/org.eclipse.fx.ide.pde.ui/src/org/eclipse/fx/ide/pde/ui/E3ViewPartClassWizard.java b/bundles/tooling/org.eclipse.fx.ide.pde.ui/src/org/eclipse/fx/ide/pde/ui/E3ViewPartClassWizard.java
index 595e45255..1ef4efc8b 100755
--- a/bundles/tooling/org.eclipse.fx.ide.pde.ui/src/org/eclipse/fx/ide/pde/ui/E3ViewPartClassWizard.java
+++ b/bundles/tooling/org.eclipse.fx.ide.pde.ui/src/org/eclipse/fx/ide/pde/ui/E3ViewPartClassWizard.java
@@ -47,10 +47,8 @@ public class E3ViewPartClassWizard extends AbstractNewClassWizard<JDTElement> {
IBundleProjectDescription bundleDesc = bpService.getDescription(p);
IRequiredBundleDescription requireDesc = bpService.newRequiredBundle("org.eclipse.fx.ui.workbench3", null, false, false);
- IPackageImportDescription importDesc = bpService.newPackageImport("javafx.scene", null, false);
BundleHelper.addRequiredBundleDescriptions(bundleDesc, requireDesc);
- BundleHelper.addPackageImportDescriptions(bundleDesc, importDesc);
bundleDesc.apply(new NullProgressMonitor());
return super.performFinish();

Back to the top