Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2008-04-16 13:05:13 +0000
committerDJ Houghton2008-04-16 13:05:13 +0000
commitf850d32b5539fc7ac785ea4ce80fb8a23351e21b (patch)
tree00460de10ddcd986a0eaaa5089606fc396fcd92e /bundles/org.eclipse.equinox.p2.directorywatcher/src
parent880dd550c25b70648717be9f0fa1a5addfe46ae0 (diff)
downloadrt.equinox.p2-f850d32b5539fc7ac785ea4ce80fb8a23351e21b.tar.gz
rt.equinox.p2-f850d32b5539fc7ac785ea4ce80fb8a23351e21b.tar.xz
rt.equinox.p2-f850d32b5539fc7ac785ea4ce80fb8a23351e21b.zip
Bug 227194 - Compiler warnings in I20080415-0800
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.directorywatcher/src')
-rw-r--r--bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/internal/provisional/p2/directorywatcher/Activator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/internal/provisional/p2/directorywatcher/Activator.java b/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/internal/provisional/p2/directorywatcher/Activator.java
index b97dcd2f1..e3bf2c478 100644
--- a/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/internal/provisional/p2/directorywatcher/Activator.java
+++ b/bundles/org.eclipse.equinox.p2.directorywatcher/src/org/eclipse/equinox/internal/provisional/p2/directorywatcher/Activator.java
@@ -29,14 +29,14 @@ public class Activator implements BundleActivator {
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext aContext) throws Exception {
- this.context = aContext;
+ context = aContext;
}
/* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext aContext) throws Exception {
- this.context = null;
+ context = null;
}
}

Back to the top