Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2016-11-30 15:05:06 +0000
committerThomas Watson2016-12-01 16:24:56 +0000
commitc24a2f4689d418bde6b582e64b10694082fff095 (patch)
tree262ef328138d67b5fe4bc69a6a51539a1d84d513
parent7fc9069cd2869181c86355211a123e23f87a06cd (diff)
downloadrt.equinox.framework-c24a2f4689d418bde6b582e64b10694082fff095.tar.gz
rt.equinox.framework-c24a2f4689d418bde6b582e64b10694082fff095.tar.xz
rt.equinox.framework-c24a2f4689d418bde6b582e64b10694082fff095.zip
Change-Id: I4f75a52880f235675b9446415b2d2297c266c4d9 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleInstaller.java7
-rwxr-xr-xbundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java6
2 files changed, 6 insertions, 7 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleInstaller.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleInstaller.java
index 16b5971f3..7a6aafd10 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleInstaller.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/BundleInstaller.java
@@ -127,7 +127,7 @@ public class BundleInstaller {
return bundle;
}
- synchronized public Bundle[] uninstallAllBundles() throws BundleException {
+ synchronized public Bundle[] uninstallAllBundles() {
if (bundles == null)
return null;
ArrayList result = new ArrayList(bundles.size());
@@ -137,6 +137,9 @@ public class BundleInstaller {
bundle.uninstall();
} catch (IllegalStateException e) {
// ignore; bundle probably already uninstalled
+ } catch (BundleException e) {
+ // ignore and move on, but print stacktrace for logs
+ e.printStackTrace();
}
result.add(bundle);
}
@@ -144,7 +147,7 @@ public class BundleInstaller {
return (Bundle[]) result.toArray(new Bundle[result.size()]);
}
- synchronized public Bundle[] shutdown() throws BundleException {
+ synchronized public Bundle[] shutdown() {
if (bundles == null)
return null;
Bundle[] result = uninstallAllBundles();
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java
index 89d0aa376..e6707c409 100755
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/SystemBundleTests.java
@@ -1567,11 +1567,7 @@ public class SystemBundleTests extends AbstractBundleTests {
}
assertEquals("Wrong state for SystemBundle", Bundle.RESOLVED, equinox.getState()); //$NON-NLS-1$
} finally {
- try {
- testBundleInstaller.shutdown();
- } catch (BundleException e) {
- fail("Could not shutdown installer", e);
- }
+ testBundleInstaller.shutdown();
}
}

Back to the top