@@ -89,7 +89,8 @@ default DependentPromise<T> delay(long timeout, TimeUnit unit) {
8989 }
9090
9191 @ Override
92- default DependentPromise <T > delay (long timeout , TimeUnit unit , boolean delayOnError ) {
92+ default DependentPromise <T > delay (long timeout , TimeUnit unit ,
93+ boolean delayOnError ) {
9394 return delay (Timeouts .toDuration (timeout , unit ), delayOnError );
9495 }
9596
@@ -98,7 +99,8 @@ default DependentPromise<T> delay(Duration duration) {
9899 return delay (duration , true );
99100 }
100101
101- default DependentPromise <T > delay (long timeout , TimeUnit unit , boolean delayOnError , boolean enlistOrigin ) {
102+ default DependentPromise <T > delay (long timeout , TimeUnit unit ,
103+ boolean delayOnError , boolean enlistOrigin ) {
102104 return delay (Timeouts .toDuration (timeout , unit ), delayOnError , enlistOrigin );
103105 }
104106
@@ -114,11 +116,13 @@ default DependentPromise<T> orTimeout(long timeout, TimeUnit unit) {
114116 }
115117
116118 @ Override
117- default DependentPromise <T > orTimeout (long timeout , TimeUnit unit , boolean cancelOnTimeout ) {
119+ default DependentPromise <T > orTimeout (long timeout , TimeUnit unit ,
120+ boolean cancelOnTimeout ) {
118121 return orTimeout (Timeouts .toDuration (timeout , unit ), cancelOnTimeout );
119122 }
120123
121- default DependentPromise <T > orTimeout (long timeout , TimeUnit unit , boolean cancelOnTimeout , boolean enlistOrigin ) {
124+ default DependentPromise <T > orTimeout (long timeout , TimeUnit unit ,
125+ boolean cancelOnTimeout , boolean enlistOrigin ) {
122126 return orTimeout (Timeouts .toDuration (timeout , unit ), cancelOnTimeout , enlistOrigin );
123127 }
124128
@@ -130,7 +134,8 @@ default DependentPromise<T> orTimeout(Duration duration) {
130134 @ Override
131135 DependentPromise <T > orTimeout (Duration duration , boolean cancelOnTimeout );
132136
133- DependentPromise <T > orTimeout (Duration duration , boolean cancelOnTimeout , boolean enlistOrigin );
137+ DependentPromise <T > orTimeout (Duration duration ,
138+ boolean cancelOnTimeout , boolean enlistOrigin );
134139
135140 // On Timeout
136141 @ Override
@@ -139,11 +144,15 @@ default DependentPromise<T> onTimeout(T value, long timeout, TimeUnit unit) {
139144 }
140145
141146 @ Override
142- default DependentPromise <T > onTimeout (T value , long timeout , TimeUnit unit , boolean cancelOnTimeout ) {
147+ default DependentPromise <T > onTimeout (T value ,
148+ long timeout , TimeUnit unit ,
149+ boolean cancelOnTimeout ) {
143150 return onTimeout (value , Timeouts .toDuration (timeout , unit ), cancelOnTimeout );
144151 }
145152
146- default DependentPromise <T > onTimeout (T value , long timeout , TimeUnit unit , boolean cancelOnTimeout , boolean enlistOrigin ) {
153+ default DependentPromise <T > onTimeout (T value ,
154+ long timeout , TimeUnit unit ,
155+ boolean cancelOnTimeout , boolean enlistOrigin ) {
147156 return onTimeout (value , Timeouts .toDuration (timeout , unit ), cancelOnTimeout , enlistOrigin );
148157 }
149158
@@ -155,19 +164,25 @@ default DependentPromise<T> onTimeout(T value, Duration duration) {
155164 @ Override
156165 DependentPromise <T > onTimeout (T value , Duration duration , boolean cancelOnTimeout );
157166
158- DependentPromise <T > onTimeout (T value , Duration duration , boolean cancelOnTimeout , boolean enlistOrigin );
167+ DependentPromise <T > onTimeout (T value , Duration duration ,
168+ boolean cancelOnTimeout , boolean enlistOrigin );
159169
160170 @ Override
161- default DependentPromise <T > onTimeout (Supplier <? extends T > supplier , long timeout , TimeUnit unit ) {
171+ default DependentPromise <T > onTimeout (Supplier <? extends T > supplier ,
172+ long timeout , TimeUnit unit ) {
162173 return onTimeout (supplier , timeout , unit , true );
163174 }
164175
165176 @ Override
166- default DependentPromise <T > onTimeout (Supplier <? extends T > supplier , long timeout , TimeUnit unit , boolean cancelOnTimeout ) {
177+ default DependentPromise <T > onTimeout (Supplier <? extends T > supplier ,
178+ long timeout , TimeUnit unit ,
179+ boolean cancelOnTimeout ) {
167180 return onTimeout (supplier , Timeouts .toDuration (timeout , unit ), cancelOnTimeout );
168181 }
169182
170- default DependentPromise <T > onTimeout (Supplier <? extends T > supplier , long timeout , TimeUnit unit , boolean cancelOnTimeout , boolean enlistOrigin ) {
183+ default DependentPromise <T > onTimeout (Supplier <? extends T > supplier ,
184+ long timeout , TimeUnit unit ,
185+ boolean cancelOnTimeout , boolean enlistOrigin ) {
171186 return onTimeout (supplier , Timeouts .toDuration (timeout , unit ), cancelOnTimeout , enlistOrigin );
172187 }
173188
@@ -177,9 +192,11 @@ default DependentPromise<T> onTimeout(Supplier<? extends T> supplier, Duration d
177192 }
178193
179194 @ Override
180- DependentPromise <T > onTimeout (Supplier <? extends T > supplier , Duration duration , boolean cancelOnTimeout );
195+ DependentPromise <T > onTimeout (Supplier <? extends T > supplier , Duration duration ,
196+ boolean cancelOnTimeout );
181197
182- DependentPromise <T > onTimeout (Supplier <? extends T > supplier , Duration duration , boolean cancelOnTimeout , boolean enlistOrigin );
198+ DependentPromise <T > onTimeout (Supplier <? extends T > supplier , Duration duration ,
199+ boolean cancelOnTimeout , boolean enlistOrigin );
183200
184201 <U > DependentPromise <U > thenApply (Function <? super T , ? extends U > fn , boolean enlistOrigin );
185202
@@ -277,31 +294,41 @@ DependentPromise<Void> runAfterEitherAsync(CompletionStage<?> other,
277294
278295 <U > DependentPromise <U > thenComposeAsync (Function <? super T , ? extends CompletionStage <U >> fn , boolean enlistOrigin );
279296
280- <U > DependentPromise <U > thenComposeAsync (Function <? super T , ? extends CompletionStage <U >> fn , Executor executor , boolean enlistOrigin );
297+ <U > DependentPromise <U > thenComposeAsync (Function <? super T , ? extends CompletionStage <U >> fn ,
298+ Executor executor ,
299+ boolean enlistOrigin );
281300
282301 DependentPromise <T > exceptionally (Function <Throwable , ? extends T > fn , boolean enlistOrigin );
283302
284303 DependentPromise <T > exceptionallyAsync (Function <Throwable , ? extends T > fn , boolean enlistOrigin );
285304
286- DependentPromise <T > exceptionallyAsync (Function <Throwable , ? extends T > fn , Executor executor , boolean enlistOrigin );
305+ DependentPromise <T > exceptionallyAsync (Function <Throwable , ? extends T > fn ,
306+ Executor executor ,
307+ boolean enlistOrigin );
287308
288309 DependentPromise <T > exceptionallyCompose (Function <Throwable , ? extends CompletionStage <T >> fn , boolean enlistOrigin );
289310
290311 DependentPromise <T > exceptionallyComposeAsync (Function <Throwable , ? extends CompletionStage <T >> fn , boolean enlistOrigin );
291312
292- DependentPromise <T > exceptionallyComposeAsync (Function <Throwable , ? extends CompletionStage <T >> fn , Executor executor , boolean enlistOrigin );
313+ DependentPromise <T > exceptionallyComposeAsync (Function <Throwable , ? extends CompletionStage <T >> fn ,
314+ Executor executor ,
315+ boolean enlistOrigin );
293316
294317 DependentPromise <T > whenComplete (BiConsumer <? super T , ? super Throwable > action , boolean enlistOrigin );
295318
296319 DependentPromise <T > whenCompleteAsync (BiConsumer <? super T , ? super Throwable > action , boolean enlistOrigin );
297320
298- DependentPromise <T > whenCompleteAsync (BiConsumer <? super T , ? super Throwable > action , Executor executor , boolean enlistOrigin );
321+ DependentPromise <T > whenCompleteAsync (BiConsumer <? super T , ? super Throwable > action ,
322+ Executor executor ,
323+ boolean enlistOrigin );
299324
300325 <U > DependentPromise <U > handle (BiFunction <? super T , Throwable , ? extends U > fn , boolean enlistOrigin );
301326
302327 <U > DependentPromise <U > handleAsync (BiFunction <? super T , Throwable , ? extends U > fn , boolean enlistOrigin );
303328
304- <U > DependentPromise <U > handleAsync (BiFunction <? super T , Throwable , ? extends U > fn , Executor executor , boolean enlistOrigin );
329+ <U > DependentPromise <U > handleAsync (BiFunction <? super T , Throwable , ? extends U > fn ,
330+ Executor executor ,
331+ boolean enlistOrigin );
305332
306333 CompletableFuture <T > toCompletableFuture (boolean enlistOrigin );
307334
@@ -334,21 +361,25 @@ DependentPromise<Void> runAfterEitherAsync(CompletionStage<?> other,
334361 DependentPromise <Void > thenRunAsync (Runnable action , Executor executor );
335362
336363 @ Override
337- <U , V > DependentPromise <V > thenCombine (CompletionStage <? extends U > other , BiFunction <? super T , ? super U , ? extends V > fn );
364+ <U , V > DependentPromise <V > thenCombine (CompletionStage <? extends U > other ,
365+ BiFunction <? super T , ? super U , ? extends V > fn );
338366
339367 @ Override
340- <U , V > DependentPromise <V > thenCombineAsync (CompletionStage <? extends U > other , BiFunction <? super T , ? super U , ? extends V > fn );
368+ <U , V > DependentPromise <V > thenCombineAsync (CompletionStage <? extends U > other ,
369+ BiFunction <? super T , ? super U , ? extends V > fn );
341370
342371 @ Override
343372 <U , V > DependentPromise <V > thenCombineAsync (CompletionStage <? extends U > other ,
344373 BiFunction <? super T , ? super U , ? extends V > fn ,
345374 Executor executor );
346375
347376 @ Override
348- <U > DependentPromise <Void > thenAcceptBoth (CompletionStage <? extends U > other , BiConsumer <? super T , ? super U > action );
377+ <U > DependentPromise <Void > thenAcceptBoth (CompletionStage <? extends U > other ,
378+ BiConsumer <? super T , ? super U > action );
349379
350380 @ Override
351- <U > DependentPromise <Void > thenAcceptBothAsync (CompletionStage <? extends U > other , BiConsumer <? super T , ? super U > action );
381+ <U > DependentPromise <Void > thenAcceptBothAsync (CompletionStage <? extends U > other ,
382+ BiConsumer <? super T , ? super U > action );
352383
353384 @ Override
354385 <U > DependentPromise <Void > thenAcceptBothAsync (CompletionStage <? extends U > other ,
0 commit comments