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.162 by jsr166, Fri Sep 4 20:44:50 2015 UTC vs.
Revision 1.163 by jsr166, Fri Sep 4 20:58:17 2015 UTC

# Line 2558 | Line 2558 | public class CompletableFuture<T> implem
2558       * @since 1.9
2559       */
2560      public static Executor delayedExecutor(long delay, TimeUnit unit) {
2561 <        if (unit == null) throw new NullPointerException();
2561 >        if (unit == null)
2562 >            throw new NullPointerException();
2563          return new DelayedExecutor(delay, unit, asyncPool);
2564      }
2565  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines