Skip to content

Commit 0ccc287

Browse files
committed
Fuck javadoc
1 parent f4f6129 commit 0ccc287

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

client/src/main/java/org/asynchttpclient/future/ExecutionList.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* <p>
3131
* Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown during {@code Executor.execute} (e.g., a {@code RejectedExecutionException} or an
32-
* exception thrown by {@linkplain MoreExecutors#directExecutor direct execution}) will be caught and logged.
32+
* exception thrown by a directExecutor direct execution) will be caught and logged.
3333
*
3434
* @author Nishant Thakkar
3535
* @author Sven Mawson
@@ -49,13 +49,9 @@ public final class ExecutionList {
4949
public ExecutionList() {
5050
}
5151

52-
/**
53-
* Adds the {@code Runnable} and accompanying {@code Executor} to the list of listeners to execute. If execution has already begun, the listener is executed immediately.
54-
*
55-
* <p>
56-
* When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See the discussion in the {@link ListenableFuture#addListener
57-
* ListenableFuture.addListener} documentation.
58-
*/
52+
// Adds the {@code Runnable} and accompanying {@code Executor} to the list of listeners to execute. If execution has already begun, the listener is executed immediately.
53+
// When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See the discussion in the {@link org.asynchttpclient.ListenableFuture#addListener
54+
// ListenableFuture.addListener} documentation.
5955
public void add(Runnable runnable, Executor executor) {
6056
// Fail fast on a null. We throw NPE here because the contract of Executor states that it
6157
// throws NPE on null listener, so we propagate that contract up into the add method as well.

0 commit comments

Comments
 (0)