@@ -469,7 +469,7 @@ public Thread setMainThread() {
469
469
* {@link Fawe#submitUUIDKeyQueuedTask(UUID, Runnable, Object), {@link Fawe#submitUUIDKeyQueuedTask(UUID, Callable)}
470
470
* to ensure if a thread is already a UUID-queued thread, the task is immediately run
471
471
*/
472
- @ Deprecated (forRemoval = true , since = "TODO " )
472
+ @ Deprecated (forRemoval = true , since = "2.12.1 " )
473
473
public KeyQueuedExecutorService <UUID > getClipboardExecutor () {
474
474
return this .uuidKeyQueuedExecutorService ;
475
475
}
@@ -478,7 +478,7 @@ public KeyQueuedExecutorService<UUID> getClipboardExecutor() {
478
478
* Submit a task to the UUID key-queued executor
479
479
*
480
480
* @return Future representing the tank
481
- * @since TODO
481
+ * @since 2.12.1
482
482
*/
483
483
public Future <?> submitUUIDKeyQueuedTask (UUID uuid , Runnable runnable ) {
484
484
if (Thread .currentThread () instanceof UUIDKeyQueuedThreadFactory .UUIDKeyQueuedThread ) {
@@ -492,7 +492,7 @@ public Future<?> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable) {
492
492
* Submit a task to the UUID key-queued executor
493
493
*
494
494
* @return Future representing the tank
495
- * @since TODO
495
+ * @since 2.12.1
496
496
*/
497
497
public <T > Future <T > submitUUIDKeyQueuedTask (UUID uuid , Runnable runnable , T result ) {
498
498
if (Thread .currentThread () instanceof UUIDKeyQueuedThreadFactory .UUIDKeyQueuedThread ) {
@@ -506,7 +506,7 @@ public <T> Future<T> submitUUIDKeyQueuedTask(UUID uuid, Runnable runnable, T res
506
506
* Submit a task to the UUID key-queued executor
507
507
*
508
508
* @return Future representing the tank
509
- * @since TODO
509
+ * @since 2.12.1
510
510
*/
511
511
public <T > Future <T > submitUUIDKeyQueuedTask (UUID uuid , Callable <T > callable ) {
512
512
if (Thread .currentThread () instanceof UUIDKeyQueuedThreadFactory .UUIDKeyQueuedThread ) {
0 commit comments