Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2016-11-07 19:43:52 +0000
committerThomas Watson2016-11-07 19:43:52 +0000
commitcc11dbcc759c5d04377bdb1a3b1c1ffe005f01ac (patch)
treee0b894afa0e25fdcf623f4480b8963139f2e6c01
parent58ee80c18bcaefd043048b207ca196f5c923fed4 (diff)
downloadrt.equinox.framework-cc11dbcc759c5d04377bdb1a3b1c1ffe005f01ac.tar.gz
rt.equinox.framework-cc11dbcc759c5d04377bdb1a3b1c1ffe005f01ac.tar.xz
rt.equinox.framework-cc11dbcc759c5d04377bdb1a3b1c1ffe005f01ac.zip
Bug 502209 - remove printStackTrace
Change-Id: Iacfe8995f5a3479c9c4cb947efcfb6fb7dabd6df Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/url/MultiplexingFactory.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/url/MultiplexingFactory.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/url/MultiplexingFactory.java
index c78748c44..2b7f97f5e 100644
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/url/MultiplexingFactory.java
+++ b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/url/MultiplexingFactory.java
@@ -58,7 +58,6 @@ public abstract class MultiplexingFactory {
Class<Collection<AccessibleObject>> clazz = (Class<Collection<AccessibleObject>>) defineAnonymousClass.invoke(unsafe, URL.class, bytes, (Object[]) null);
result = clazz.getConstructor().newInstance();
} catch (Throwable t) {
- t.printStackTrace();
// ingore as if there is no Unsafe
}
setAccessible = result;

Back to the top