Skip to content

Commit 5a31e30

Browse files
committed
minor style fixes
1 parent 809f134 commit 5a31e30

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/main/java/net/tascalate/concurrent/decorators/AbstractPromiseLikeDecorator.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -211,41 +211,31 @@ public Promise<T> exceptionally(Function<Throwable, ? extends T> fn) {
211211
}
212212

213213
/* Since Java 12 */
214-
/*
215214
@Override
216-
*/
217215
public Promise<T> exceptionallyAsync(Function<Throwable, ? extends T> fn) {
218216
return cast(super.exceptionallyAsync(fn));
219217
}
220218

221219
/* Since Java 12 */
222-
/*
223220
@Override
224-
*/
225221
public Promise<T> exceptionallyAsync(Function<Throwable, ? extends T> fn, Executor executor) {
226222
return cast(super.exceptionallyAsync(fn, executor));
227223
}
228224

229225
/* Since Java 12 */
230-
/*
231226
@Override
232-
*/
233227
public Promise<T> exceptionallyCompose(Function<Throwable, ? extends CompletionStage<T>> fn) {
234228
return cast(super.exceptionallyCompose(fn));
235229
}
236230

237231
/* Since Java 12 */
238-
/*
239232
@Override
240-
*/
241233
public Promise<T> exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>> fn) {
242234
return cast(super.exceptionallyComposeAsync(fn));
243235
}
244236

245237
/* Since Java 12 */
246-
/*
247238
@Override
248-
*/
249239
public Promise<T> exceptionallyComposeAsync(Function<Throwable, ? extends CompletionStage<T>> fn, Executor executor) {
250240
return cast(super.exceptionallyComposeAsync(fn, executor));
251241
}

0 commit comments

Comments
 (0)