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

Comparing jsr166/src/main/java/util/concurrent/CompletableFuture.java (file contents):
Revision 1.177 by dl, Sat Oct 3 15:55:09 2015 UTC vs.
Revision 1.178 by jsr166, Sat Oct 3 18:17:51 2015 UTC

# Line 1780 | Line 1780 | public class CompletableFuture<T> implem
1780                      q = new Signaller(true, nanos, deadline);
1781                  else if (!queued)
1782                      queued = tryPushStack(q);
1783 <                else if (q.nanos <= 0)
1783 >                else if (q.nanos <= 0L)
1784                      break;
1785                  else {
1786                      try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines