1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 06:02:11 +02:00

Warning cleanup.

This commit is contained in:
Mikhail Khodjaiants 2010-04-14 17:24:03 +00:00
parent 21657d0594
commit a9a0949364
2 changed files with 8 additions and 4 deletions

View file

@ -33,7 +33,8 @@ public class Activator extends AbstractUIPlugin {
/* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@ -41,7 +42,8 @@ public class Activator extends AbstractUIPlugin {
/* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}

View file

@ -33,7 +33,8 @@ public class Activator extends Plugin {
/* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@ -41,7 +42,8 @@ public class Activator extends Plugin {
/* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}