Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-04-13 16:10:27 +0000
committerThomas Watson2006-04-13 16:10:27 +0000
commit37c1a02e7b415de25d06af3b9fee41ccf7f19373 (patch)
treecfdb063184399b4e4219e5e3fce47d043df99c86
parentfdda42240b89e5001d1e1392def852994be151a2 (diff)
downloadrt.equinox.framework-37c1a02e7b415de25d06af3b9fee41ccf7f19373.tar.gz
rt.equinox.framework-37c1a02e7b415de25d06af3b9fee41ccf7f19373.tar.xz
rt.equinox.framework-37c1a02e7b415de25d06af3b9fee41ccf7f19373.zip
Bug 136662 PluginConverterImpl causes JARs to be verified
-rw-r--r--bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java
index 339b1f975..315206603 100644
--- a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java
+++ b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/core/runtime/internal/adaptor/PluginConverterImpl.java
@@ -513,7 +513,7 @@ public class PluginConverterImpl implements PluginConverter {
Set names = new HashSet();
JarFile file = null;
try {
- file = new JarFile(jarFile);
+ file = new JarFile(jarFile, false);
} catch (IOException e) {
String message = NLS.bind(EclipseAdaptorMsg.ECLIPSE_CONVERTER_PLUGIN_LIBRARY_IGNORED, jarFile, pluginInfo.getUniqueId());
adaptor.getFrameworkLog().log(new FrameworkLogEntry(FrameworkAdaptor.FRAMEWORK_SYMBOLICNAME, FrameworkLogEntry.ERROR, 0, message, 0, e, null));

Back to the top