Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blewitt2020-10-31 23:18:39 +0000
committerAlexander Kurtakov2020-11-01 06:18:30 +0000
commit056a827084d22f213d92c41eb397f24f4cf74fa1 (patch)
tree98bb546bcfe39e7ac0ae47ef87849919f12fa9fe /org.eclipse.tips.ide/META-INF/MANIFEST.MF
parent465c2cff4c7ae118ac517d474da7153ece4edb67 (diff)
downloadeclipse.platform.ua-056a827084d22f213d92c41eb397f24f4cf74fa1.tar.gz
eclipse.platform.ua-056a827084d22f213d92c41eb397f24f4cf74fa1.tar.xz
eclipse.platform.ua-056a827084d22f213d92c41eb397f24f4cf74fa1.zip
The Activator (going by the old name of Plugin) is only used in order to access the dialog settings. However, bug 549929 provided a new way to get the DialogSettings without requiring a subclass of Plugin to access it. Change-Id: Iff6167992b580de138b39b174dcfd18688975681 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
Diffstat (limited to 'org.eclipse.tips.ide/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.tips.ide/META-INF/MANIFEST.MF4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.tips.ide/META-INF/MANIFEST.MF b/org.eclipse.tips.ide/META-INF/MANIFEST.MF
index eecb02233..228b408bf 100644
--- a/org.eclipse.tips.ide/META-INF/MANIFEST.MF
+++ b/org.eclipse.tips.ide/META-INF/MANIFEST.MF
@@ -2,12 +2,13 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.tips.ide;singleton:=true
-Bundle-Version: 0.1.900.qualifier
+Bundle-Version: 0.1.1000.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.eclipse.ui;bundle-version="3.0.0",
org.eclipse.core.runtime;bundle-version="3.0.0",
org.eclipse.core.expressions;bundle-version="3.0.0",
org.eclipse.e4.ui.workbench;bundle-version="1.0.0",
+ org.eclipse.ui.workbench;bundle-version="3.122.0",
org.eclipse.tips.core;bundle-version="0.1.0",
org.eclipse.tips.ui;bundle-version="0.1.0",
org.eclipse.tips.json,
@@ -16,6 +17,5 @@ Import-Package: javax.annotation
Export-Package: org.eclipse.tips.ide.internal;x-internal:=true
Automatic-Module-Name: org.eclipse.tips.ide
Bundle-Vendor: %Bundle-Vendor
-Bundle-Activator: org.eclipse.tips.ide.internal.Plugin
Bundle-ActivationPolicy: lazy
Service-Component: OSGI-INF/org.eclipse.tips.ide.internal.TipsStartupService.xml

Back to the top