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.64 by jsr166, Wed Apr 19 23:45:51 2017 UTC vs.
Revision 1.65 by dl, Sat Dec 2 16:42:41 2017 UTC

# Line 706 | Line 706 | public abstract class CountedCompleter<T
706          CountedCompleter<?> a = this, s = a;
707          while (a.onExceptionalCompletion(ex, s) &&
708                 (a = (s = a).completer) != null && a.status >= 0 &&
709 <               a.recordExceptionalCompletion(ex) == EXCEPTIONAL)
709 >               isExceptionalStatus(a.recordExceptionalCompletion(ex)))
710              ;
711      }
712  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines