Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java')
-rw-r--r--bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java
index 288c54e22..a34964ed1 100644
--- a/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java
+++ b/bundles/org.eclipse.equinox.app/src/org/eclipse/equinox/internal/app/AppPersistence.java
@@ -354,6 +354,7 @@ public class AppPersistence implements ServiceTrackerCustomizer {
}
static class AppTimer implements Runnable {
+ @Override
public void run() {
int lastMin = -1;
while (!shutdown) {
@@ -413,6 +414,7 @@ public class AppPersistence implements ServiceTrackerCustomizer {
}
}
+ @Override
public Object addingService(ServiceReference reference) {
if (configLocation != null)
return null; // only care about one configuration
@@ -422,10 +424,12 @@ public class AppPersistence implements ServiceTrackerCustomizer {
return configLocation;
}
+ @Override
public void modifiedService(ServiceReference reference, Object service) {
// don't care
}
+ @Override
public void removedService(ServiceReference reference, Object service) {
if (service == configLocation)
configLocation = null;

Back to the top