Skip to content

Commit 1b23c0a

Browse files
committed
Code style fixes
1 parent bfe8d1c commit 1b23c0a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/net/tascalate/concurrent/Promise.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,24 +161,24 @@ default DependentPromise<T> dependent() {
161161
<U, V> Promise<V> thenCombineAsync(CompletionStage<? extends U> other, BiFunction<? super T, ? super U, ? extends V> fn);
162162

163163
<U, V> Promise<V> thenCombineAsync(CompletionStage<? extends U> other,
164-
BiFunction<? super T, ? super U, ? extends V> fn,
164+
BiFunction<? super T, ? super U, ? extends V> fn,
165165
Executor executor);
166166

167167
<U> Promise<Void> thenAcceptBoth(CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action);
168168

169169
<U> Promise<Void> thenAcceptBothAsync(CompletionStage<? extends U> other, BiConsumer<? super T, ? super U> action);
170170

171171
<U> Promise<Void> thenAcceptBothAsync(CompletionStage<? extends U> other,
172-
BiConsumer<? super T, ? super U> action,
172+
BiConsumer<? super T, ? super U> action,
173173
Executor executor);
174174

175175
Promise<Void> runAfterBoth(CompletionStage<?> other, Runnable action);
176176

177177
Promise<Void> runAfterBothAsync(CompletionStage<?> other, Runnable action);
178178

179179
Promise<Void> runAfterBothAsync(CompletionStage<?> other,
180-
Runnable action,
181-
Executor executor);
180+
Runnable action,
181+
Executor executor);
182182

183183
<U> Promise<U> applyToEither(CompletionStage<? extends T> other, Function<? super T, U> fn);
184184

@@ -201,8 +201,8 @@ Promise<Void> acceptEitherAsync(CompletionStage<? extends T> other,
201201
Promise<Void> runAfterEitherAsync(CompletionStage<?> other, Runnable action);
202202

203203
Promise<Void> runAfterEitherAsync(CompletionStage<?> other,
204-
Runnable action,
205-
Executor executor);
204+
Runnable action,
205+
Executor executor);
206206

207207
<U> Promise<U> thenCompose(Function<? super T, ? extends CompletionStage<U>> fn);
208208

0 commit comments

Comments
 (0)