Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2013-12-17 15:09:04 +0000
committerTom Schindl2013-12-17 15:09:04 +0000
commitc01e1cf3b1498d55579965ed724c0a4c09ea2a4a (patch)
treeabf14b86729dde921e08ba21ed6ec61f02e992e4
parent8d46a5a20ae263b2a98ad926419f9b5290e06b4d (diff)
downloadorg.eclipse.efxclipse-c01e1cf3b1498d55579965ed724c0a4c09ea2a4a.tar.gz
org.eclipse.efxclipse-c01e1cf3b1498d55579965ed724c0a4c09ea2a4a.tar.xz
org.eclipse.efxclipse-c01e1cf3b1498d55579965ed724c0a4c09ea2a4a.zip
fixed overrides
-rwxr-xr-xbundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/Activator.java10
1 files changed, 2 insertions, 8 deletions
diff --git a/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/Activator.java b/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/Activator.java
index bbb939a0b..c71a7ec57 100755
--- a/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/Activator.java
+++ b/bundles/tooling/org.eclipse.fx.ide.fxml/src/org/eclipse/fx/ide/fxml/Activator.java
@@ -34,19 +34,13 @@ public class Activator extends AbstractUIPlugin {
public Activator() {
}
- /*
- * (non-Javadoc)
- * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
- */
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
- /*
- * (non-Javadoc)
- * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
- */
+ @Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);

Back to the top