Browse Source

false positive for spurious wakeups

master
Stefan Bodewig 8 years ago
parent
commit
9d53feac73
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Parallel.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Parallel.java View File

@@ -352,7 +352,7 @@ public class Parallel extends Task
// System.out.println("Thread " + i + " is still
// alive ");
// still running - wait for it
semaphore.wait();
semaphore.wait(); //NOSONAR
continue outer2;
}
}


Loading…
Cancel
Save