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

Comparing jsr166/src/main/java/util/concurrent/CompletionStage.java (file contents):
Revision 1.43 by jsr166, Sat Sep 22 03:36:59 2018 UTC vs.
Revision 1.44 by jsr166, Sat Sep 22 21:26:46 2018 UTC

# Line 915 | Line 915 | public interface CompletionStage<T> {
915          return handle((r, ex) -> (ex == null)
916                        ? this
917                        : this.handleAsync((r1, ex1) -> fn.apply(ex1))
918 <                        .thenCompose(Function.identity())
919 <        ).thenCompose(Function.identity());
918 >                        .thenCompose(Function.identity()))
919 >            .thenCompose(Function.identity());
920      }
921  
922      /**
# Line 941 | Line 941 | public interface CompletionStage<T> {
941          return handle((r, ex) -> (ex == null)
942                        ? this
943                        : this.handleAsync((r1, ex1) -> fn.apply(ex1), executor)
944 <                        .thenCompose(Function.identity())
945 <        ).thenCompose(Function.identity());
944 >                        .thenCompose(Function.identity()))
945 >            .thenCompose(Function.identity());
946      }
947  
948      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines