--- jsr166/src/jsr166y/Phaser.java 2010/11/29 15:47:19 1.63 +++ jsr166/src/jsr166y/Phaser.java 2010/11/29 20:58:06 1.64 @@ -963,7 +963,7 @@ public class Phaser { this.interruptible = interruptible; this.nanos = nanos; this.timed = timed; - this.lastTime = timed? System.nanoTime() : 0L; + this.lastTime = timed ? System.nanoTime() : 0L; thread = Thread.currentThread(); }