ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/CountedCompleter.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/CountedCompleter.java (file contents):
Revision 1.53 by jsr166, Tue Apr 19 22:55:30 2016 UTC vs.
Revision 1.54 by jsr166, Wed Apr 27 19:51:53 2016 UTC

# Line 567 | Line 567 | public abstract class CountedCompleter<T
567       * not, be invoked for each completer in a computation.
568       */
569      public final void propagateCompletion() {
570 <        CountedCompleter<?> a = this, s = a;
570 >        CountedCompleter<?> a = this, s;
571          for (int c;;) {
572              if ((c = a.pending) == 0) {
573                  if ((a = (s = a).completer) == null) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines