Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.runtimeManager/src/org/eclipse/osee/ote/runtimemanager/SafeWorkspaceTracker.java')
-rw-r--r--plugins/org.eclipse.osee.ote.runtimeManager/src/org/eclipse/osee/ote/runtimemanager/SafeWorkspaceTracker.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.ote.runtimeManager/src/org/eclipse/osee/ote/runtimemanager/SafeWorkspaceTracker.java b/plugins/org.eclipse.osee.ote.runtimeManager/src/org/eclipse/osee/ote/runtimemanager/SafeWorkspaceTracker.java
index 7151e7e63c9..822901f47f3 100644
--- a/plugins/org.eclipse.osee.ote.runtimeManager/src/org/eclipse/osee/ote/runtimemanager/SafeWorkspaceTracker.java
+++ b/plugins/org.eclipse.osee.ote.runtimeManager/src/org/eclipse/osee/ote/runtimemanager/SafeWorkspaceTracker.java
@@ -252,12 +252,12 @@ public class SafeWorkspaceTracker extends ServiceTracker implements OteBundleLoc
Set<URL> sysNewBundles = systemLibListener.consumeNewBundles();
Set<URL> sysChangedBundles = systemLibListener.consumeChangedBundles();
- // Set<URL> sysRemovedBundles =
+ // Set<URL> sysRemovedBundles =
systemLibListener.consumeRemovedBundles();
Set<URL> userNewBundles = userLibListener.consumeNewBundles();
Set<URL> userChangedBundles = userLibListener.consumeChangedBundles();
- // Set<URL> userRemovedBundles =
+ // Set<URL> userRemovedBundles =
userLibListener.consumeRemovedBundles();
Collection<URL> sysNewModLibs = new ArrayList<URL>(sysNewBundles.size() + sysChangedBundles.size());
@@ -277,7 +277,7 @@ public class SafeWorkspaceTracker extends ServiceTracker implements OteBundleLoc
// modifiedLibs.add(info);
// }
// }
- //
+ //
// return modifiedLibs;
}
}

Back to the top