ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/ForkJoinTask.java
(Generate patch)

Comparing jsr166/src/jsr166y/ForkJoinTask.java (file contents):
Revision 1.72 by dl, Wed Nov 24 10:50:38 2010 UTC vs.
Revision 1.73 by jsr166, Sun Nov 28 21:21:03 2010 UTC

# Line 261 | Line 261 | public abstract class ForkJoinTask<V> im
261      private void externalAwaitDone() {
262          if (status >= 0) {
263              boolean interrupted = false;
264 <            synchronized(this) {
264 >            synchronized (this) {
265                  for (;;) {
266                      int s = status;
267                      if (s == 0)
# Line 294 | Line 294 | public abstract class ForkJoinTask<V> im
294              throw new InterruptedException();
295          if (status >= 0) {
296              long startTime = timed ? System.nanoTime() : 0L;
297 <            synchronized(this) {
297 >            synchronized (this) {
298                  for (;;) {
299                      long nt;
300                      int s = status;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines