You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -85,9 +85,9 @@ public CallableBackgroundInitializer(final Callable<T> call) {
85
85
* Creates a new instance of {@link CallableBackgroundInitializer} and initializes it with the {@link Callable} to be executed in a background thread and
86
86
* the {@link ExecutorService} for managing the background execution.
87
87
*
88
-
* @param call the {@link Callable} (must not be <strong>null</strong>).
88
+
* @param call the {@link Callable} (must not be {@code null}).
89
89
* @param exec an external {@link ExecutorService} to be used for task execution.
90
-
* @throws IllegalArgumentException if the {@link Callable} is <strong>null</strong>.
90
+
* @throws IllegalArgumentException if the {@link Callable} is {@code null}.
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/lang3/concurrent/TimedSemaphore.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -268,7 +268,7 @@ public TimedSemaphore(final long timePeriod, final TimeUnit timeUnit, final int
268
268
269
269
/**
270
270
* Constructs a new instance of {@link TimedSemaphore} and initializes it with an executor service, the given time period, and the limit. The executor service
271
-
* will be used for creating a periodic task for monitoring the time period. It can be <strong>null</strong>, then a default service will be created.
271
+
* will be used for creating a periodic task for monitoring the time period. It can be {@code null}, then a default service will be created.
0 commit comments