Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-09-27 19:01:15 +0000
committerAlexander Kurtakov2019-09-27 19:01:15 +0000
commit94d2031740b32c870553983c6d92755d1b2f0d64 (patch)
tree780327641ca2b78575639d169c03c6cd8089966b
parente59ec746b98b486391b9fb68a0e165dfd3239058 (diff)
downloadeclipse.pde.ui-94d2031740b32c870553983c6d92755d1b2f0d64.tar.gz
eclipse.pde.ui-94d2031740b32c870553983c6d92755d1b2f0d64.tar.xz
eclipse.pde.ui-94d2031740b32c870553983c6d92755d1b2f0d64.zip
Stop including equinox.util as we are not going to ship it anymore. Change-Id: I9252740928b1c22719af2b2e95aa6ba12ead8298 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--ui/org.eclipse.pde.ui.templates/src/org/eclipse/pde/internal/ui/templates/PDETemplateSection.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/org.eclipse.pde.ui.templates/src/org/eclipse/pde/internal/ui/templates/PDETemplateSection.java b/ui/org.eclipse.pde.ui.templates/src/org/eclipse/pde/internal/ui/templates/PDETemplateSection.java
index b6992d6d9a..7f9afaf11e 100644
--- a/ui/org.eclipse.pde.ui.templates/src/org/eclipse/pde/internal/ui/templates/PDETemplateSection.java
+++ b/ui/org.eclipse.pde.ui.templates/src/org/eclipse/pde/internal/ui/templates/PDETemplateSection.java
@@ -114,12 +114,11 @@ public abstract class PDETemplateSection extends OptionTemplateSection {
}
protected IPluginReference[] getRCP3xDependencies() {
- IPluginReference[] dep = new IPluginReference[5];
+ IPluginReference[] dep = new IPluginReference[4];
dep[0] = new PluginReference("org.eclipse.core.runtime"); //$NON-NLS-1$
dep[1] = new PluginReference("org.eclipse.ui"); //$NON-NLS-1$
dep[2] = new PluginReference("org.apache.felix.scr"); //$NON-NLS-1$
- dep[3] = new PluginReference("org.eclipse.equinox.util"); //$NON-NLS-1$
- dep[4] = new PluginReference("org.eclipse.equinox.event"); //$NON-NLS-1$
+ dep[3] = new PluginReference("org.eclipse.equinox.event"); //$NON-NLS-1$
return dep;
}

Back to the top