Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2018-08-14 16:13:08 +0000
committerThomas Watson2018-08-14 16:29:44 +0000
commit0dfac454d2cfd78671f3c51ad96c70810e9b2e32 (patch)
tree7494ab2dfa788781c12d78e1e50dbe743d6f98cb /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java
parentc26eaf1d2d4e9ddf1f1ec39bb03c4b07e68c4030 (diff)
downloadrt.equinox.framework-0dfac454d2cfd78671f3c51ad96c70810e9b2e32.tar.gz
rt.equinox.framework-0dfac454d2cfd78671f3c51ad96c70810e9b2e32.tar.xz
rt.equinox.framework-0dfac454d2cfd78671f3c51ad96c70810e9b2e32.zip
Bug 537505 - Fix issues with priming multiple cp entriesI20180814-2000
When a host bundle has many classpath entries it was possible to miss the priming of the entries CDSBundleFile Change-Id: I4816b57bf425e202cbc4fa02ce5f0b7bd015a8ff Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java
index 39588afd4..941a4118e 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/cds/CDSBundleFile.java
@@ -128,4 +128,12 @@ public class CDSBundleFile extends BundleFileWrapper {
return null;
return urlHelper.findSharedClass(null, url, name);
}
+
+ /**
+ * Returns the primed flag for this bundle file.
+ * @return the primed flag
+ */
+ public boolean getPrimed() {
+ return this.primed;
+ }
}

Back to the top