Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-09-19 14:56:38 +0000
committerThomas Watson2017-09-19 14:56:38 +0000
commit9b40624f65388e4ba94b1f0645bdb456505b2d76 (patch)
tree143672b755c17db950f35ef71a08627ca0470593
parent8b01d0872e3d87aadadd398fc67dbdee2f880759 (diff)
downloadrt.equinox.framework-9b40624f65388e4ba94b1f0645bdb456505b2d76.tar.gz
rt.equinox.framework-9b40624f65388e4ba94b1f0645bdb456505b2d76.tar.xz
rt.equinox.framework-9b40624f65388e4ba94b1f0645bdb456505b2d76.zip
Change-Id: Ieb265c0e46ddd32ecdc36e596a4f8eea9a32e12d Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
index 6aa42af98..728585915 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/Storage.java
@@ -21,7 +21,6 @@ import org.eclipse.osgi.container.builders.OSGiManifestBuilderFactory;
import org.eclipse.osgi.container.namespaces.EclipsePlatformNamespace;
import org.eclipse.osgi.framework.log.FrameworkLogEntry;
import org.eclipse.osgi.framework.util.*;
-import org.eclipse.osgi.internal.container.LockSet;
import org.eclipse.osgi.internal.debug.Debug;
import org.eclipse.osgi.internal.framework.*;
import org.eclipse.osgi.internal.hookregistry.BundleFileWrapperFactoryHook;
@@ -77,7 +76,6 @@ public class Storage {
private final ModuleContainer moduleContainer;
private final Object saveMonitor = new Object();
private long lastSavedTimestamp = -1;
- private final LockSet<Long> idLocks = new LockSet<>();
private final MRUBundleFileList mruList;
private final FrameworkExtensionInstaller extensionInstaller;
private final List<String> cachedHeaderKeys = Arrays.asList(Constants.BUNDLE_SYMBOLICNAME, Constants.BUNDLE_ACTIVATIONPOLICY, "Service-Component"); //$NON-NLS-1$

Back to the top