[333837] TestSetupImport had different byte codes with latest compiler due to unused variables
diff --git a/tests/org.eclipse.jst.validation.test/META-INF/MANIFEST.MF b/tests/org.eclipse.jst.validation.test/META-INF/MANIFEST.MF index 07cad21..03ff4b7 100644 --- a/tests/org.eclipse.jst.validation.test/META-INF/MANIFEST.MF +++ b/tests/org.eclipse.jst.validation.test/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %Bundle-Name.0 Bundle-SymbolicName: org.eclipse.jst.validation.test;singleton:=true -Bundle-Version: 1.1.0 +Bundle-Version: 1.1.100.qualifier Bundle-Localization: plugin Bundle-Activator: org.eclipse.jst.validation.test.BVTValidationPlugin Require-Bundle: org.eclipse.core.runtime,
diff --git a/tests/org.eclipse.jst.validation.test/test/org/eclipse/jst/validation/test/internal/registry/TestSetupImport.java b/tests/org.eclipse.jst.validation.test/test/org/eclipse/jst/validation/test/internal/registry/TestSetupImport.java index d7859ea..c57765a 100644 --- a/tests/org.eclipse.jst.validation.test/test/org/eclipse/jst/validation/test/internal/registry/TestSetupImport.java +++ b/tests/org.eclipse.jst.validation.test/test/org/eclipse/jst/validation/test/internal/registry/TestSetupImport.java
@@ -49,30 +49,30 @@ * Return true if the file was found and imported successfully. */ public boolean importFile(IProgressMonitor monitor, String dir) { - int executionMap = 0x0; + //int executionMap = 0x0; boolean imported = true; try { File file = getInputFile(dir); - executionMap |= 0x1; + //executionMap |= 0x1; try { IImportOperation op = getOperation(); - executionMap |= 0x2; + //executionMap |= 0x2; imported = op.run(monitor, file); - executionMap |= 0x4; + //executionMap |= 0x4; } catch (InterruptedException exc) { - executionMap |= 0x8; + //executionMap |= 0x8; imported = false; ValidationPlugin.getPlugin().handleException(exc); } catch (InvocationTargetException exc) { - executionMap |= 0x10; + //executionMap |= 0x10; imported = false; ValidationPlugin.getPlugin().handleException(exc); ValidationPlugin.getPlugin().handleException(exc.getTargetException()); } catch (Throwable exc) { - executionMap |= 0x20; + //executionMap |= 0x20; imported = false; ValidationPlugin.getPlugin().handleException(exc); }