Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2010-02-01 14:19:34 +0000
committerThomas Watson2010-02-01 14:19:34 +0000
commit3cd843f30e9d7722d3b1e30425c5445b61e41d2f (patch)
tree32e2fb13f7ba2463584d585046d990f39e6cf79a
parent657af6a9ae9a3d86b3126202300891f4164a17e6 (diff)
downloadrt.equinox.framework-3cd843f30e9d7722d3b1e30425c5445b61e41d2f.tar.gz
rt.equinox.framework-3cd843f30e9d7722d3b1e30425c5445b61e41d2f.tar.xz
rt.equinox.framework-3cd843f30e9d7722d3b1e30425c5445b61e41d2f.zip
Bug 301319 - Compiler warnings in I20100129-1300
-rw-r--r--bundles/org.eclipse.osgi.tests/bundles_src/chain.test/chain/test/Activator.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi.tests/bundles_src/chain.test/chain/test/Activator.java b/bundles/org.eclipse.osgi.tests/bundles_src/chain.test/chain/test/Activator.java
index 5b6e7f158..a6296a142 100644
--- a/bundles/org.eclipse.osgi.tests/bundles_src/chain.test/chain/test/Activator.java
+++ b/bundles/org.eclipse.osgi.tests/bundles_src/chain.test/chain/test/Activator.java
@@ -34,6 +34,7 @@ public class Activator implements BundleActivator, SynchronousBundleListener {
if (event.getType() != BundleEvent.LAZY_ACTIVATION)
return;
Class clazz = BMultiChain1.class;
+ System.out.println(clazz.getName());
}
}

Back to the top