Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2012-04-20 22:31:20 +0000
committerAlexander Kurtakov2012-04-20 22:31:20 +0000
commit2de4e31e479b384bf6c11bd1a61cdec7b2933c77 (patch)
treee36a3f1b52c052f89b1001af8c93c69ac47edfa5 /oprofile/org.eclipse.linuxtools.oprofile.ui/src/org
parentfabecfd6c2e67c1511f07f0d8ade8cf826b63595 (diff)
downloadorg.eclipse.linuxtools-2de4e31e479b384bf6c11bd1a61cdec7b2933c77.tar.gz
org.eclipse.linuxtools-2de4e31e479b384bf6c11bd1a61cdec7b2933c77.tar.xz
org.eclipse.linuxtools-2de4e31e479b384bf6c11bd1a61cdec7b2933c77.zip
Enable more warnings and fix them.
Diffstat (limited to 'oprofile/org.eclipse.linuxtools.oprofile.ui/src/org')
-rw-r--r--oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/internal/oprofile/ui/OprofileUiPlugin.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/internal/oprofile/ui/OprofileUiPlugin.java b/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/internal/oprofile/ui/OprofileUiPlugin.java
index 246857b0b1..5d68485572 100644
--- a/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/internal/oprofile/ui/OprofileUiPlugin.java
+++ b/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/internal/oprofile/ui/OprofileUiPlugin.java
@@ -66,6 +66,7 @@ public class OprofileUiPlugin extends AbstractUIPlugin {
/**
* This method is called upon plug-in activation
*/
+ @Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
@@ -74,6 +75,7 @@ public class OprofileUiPlugin extends AbstractUIPlugin {
/**
* This method is called when the plug-in is stopped
*/
+ @Override
public void stop(BundleContext context) throws Exception {
super.stop(context);
plugin = null;

Back to the top