Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2018-08-15 12:55:40 +0000
committerThomas Watson2018-08-15 12:55:40 +0000
commitff0b7576f6ffc9813721be9847d8c7b8d7eed1c1 (patch)
tree84042e25675cc2423bde7e21b2aaf7f58bf33b27
parent0dfac454d2cfd78671f3c51ad96c70810e9b2e32 (diff)
downloadrt.equinox.framework-ff0b7576f6ffc9813721be9847d8c7b8d7eed1c1.tar.gz
rt.equinox.framework-ff0b7576f6ffc9813721be9847d8c7b8d7eed1c1.tar.xz
rt.equinox.framework-ff0b7576f6ffc9813721be9847d8c7b8d7eed1c1.zip
Bug 537702 - Expose Nested Dir Name as part of NestedDirBundleFileY20180815-2200I20180815-2000I20180815-1250
Change-Id: Id3c8be4529c76ea5bc26ead6d50917ce0a471c20 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/NestedDirBundleFile.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/NestedDirBundleFile.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/NestedDirBundleFile.java
index 842295272..2676517d5 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/NestedDirBundleFile.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/bundlefile/NestedDirBundleFile.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2013 IBM Corporation and others.
+ * Copyright (c) 2005, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -138,4 +138,10 @@ public class NestedDirBundleFile extends BundleFile {
public void open() throws IOException {
// do nothing
}
+
+ @Override
+ public String toString() {
+ return super.toString() + '[' + nestedDirName + ']';
+ }
+
}

Back to the top