--- jsr166/src/test/loops/Sync100M.java 2009/11/03 01:04:02 1.4 +++ jsr166/src/test/loops/Sync100M.java 2011/03/15 19:47:06 1.6 @@ -1,7 +1,7 @@ /* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain, as explained at - * http://creativecommons.org/licenses/publicdomain + * http://creativecommons.org/publicdomain/zero/1.0/ */ class Sync100M { @@ -28,7 +28,7 @@ class Sync100M { static int loop(int x, int iters) { for (int i = iters; i > 0; --i) { - synchronized(obj) { + synchronized (obj) { x = x * 134775813 + 1; } }