[333835] TestValidator4 produces different byte codes with new compiler
diff --git a/tests/org.eclipse.wst.common.tests.validation/validators/org/eclipse/wst/validation/tests/TestValidator4.java b/tests/org.eclipse.wst.common.tests.validation/validators/org/eclipse/wst/validation/tests/TestValidator4.java
index 5be6ffd..417b862 100644
--- a/tests/org.eclipse.wst.common.tests.validation/validators/org/eclipse/wst/validation/tests/TestValidator4.java
+++ b/tests/org.eclipse.wst.common.tests.validation/validators/org/eclipse/wst/validation/tests/TestValidator4.java
@@ -41,15 +41,15 @@
 	@Override
 	public ValidationResult validate(IResource resource, int kind, ValidationState state, IProgressMonitor monitor) {
 		ValidationResult vr = super.validate(resource, kind, state, monitor);
-		long j = 0;
+		//long j = 0;
 		try {
-			for (long i=0; i< 10000000; i++)j = i + 1;
+			//for (long i=0; i< 10000000; i++)j = i + 1;
 			Thread.sleep(2000);
 		}
 		catch (InterruptedException e){
 			// eat it
 		}
-		j++; // just to get rid of the compiler warning
+		//j++; // just to get rid of the compiler warning
 		return vr;
 	}
 }