File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/org/scijava/thread Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ public enum ThreadContext {
112112
113113 /**
114114 * Gets whether the current thread is a dispatch thread for use with
115- * {@link #invoke} and {@link #queue}.
115+ * {@link #invoke(Runnable) } and {@link #queue(Runnable) }.
116116 * <p>
117117 * In the case of AWT-based applications (e.g., Java on the desktop), this is
118118 * typically the AWT Event Dispatch Thread (EDT). However, ultimately the
@@ -141,7 +141,8 @@ void invoke(Runnable code) throws InterruptedException,
141141 InvocationTargetException ;
142142
143143 /**
144- * Queues the given code for later execution in a special dispatch thread.
144+ * Queues the given code for later execution in a special dispatch thread,
145+ * returning immediately.
145146 * <p>
146147 * In the case of AWT-based applications (e.g., Java on the desktop), this is
147148 * typically the AWT Event Dispatch Thread (EDT). However, ultimately the
You can’t perform that action at this time.
0 commit comments