Index: benchmark/creation/JavaThread.java
===================================================================
--- benchmark/creation/JavaThread.java	(revision b4107c815918e9d1300f3381d29c2a863abf7de8)
+++ benchmark/creation/JavaThread.java	(revision 6e540ea6f2eb5e8c7c9342b94e6f036ca964f3ec)
@@ -33,5 +33,5 @@
 	}
 	public static void helper() throws InterruptedException {
-		for(int i = 1; i <= NoOfTimes; i += 1) {
+		for(int i = 1; i <= times; i += 1) {
 			MyThread m = new MyThread();
 			x = nextRandom( x );
@@ -44,5 +44,5 @@
 		helper();
 		long end = System.nanoTime();
-		System.out.println( (end - start) / NoOfTimes );
+		System.out.println( (end - start) / times );
 	}
 	public static void main(String[] args) throws InterruptedException {
@@ -52,5 +52,5 @@
 		for (int i = Integer.parseInt("5"); --i >= 0 ; ) { 
 			InnerMain();
-			Thread.sleep(2000);	// 2 seconds
+			Thread.sleep(2000);		// 2 seconds
 			x = nextRandom(x);
 		}
