diff options
Diffstat (limited to 'src/java/com/jogamp/common/util/RunnableExecutor.java')
-rw-r--r-- | src/java/com/jogamp/common/util/RunnableExecutor.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/jogamp/common/util/RunnableExecutor.java b/src/java/com/jogamp/common/util/RunnableExecutor.java index 7e6289b..7bf9685 100644 --- a/src/java/com/jogamp/common/util/RunnableExecutor.java +++ b/src/java/com/jogamp/common/util/RunnableExecutor.java @@ -28,8 +28,8 @@ package com.jogamp.common.util; public interface RunnableExecutor { - /** {@link RunnableExecutor} implementation simply invoking {@link Runnable#run()}, - * i.e. on the current thread at the time of calling {@link #invoke(boolean, Runnable)}. + /** This {@link RunnableExecutor} implementation simply invokes {@link Runnable#run()} + * on the current thread. */ public static final RunnableExecutor currentThreadExecutor = new CurrentThreadExecutor(); |