Skip to content

Commit e99ea09

Browse files
committed
ThreadService: remove irrelevant final keywords
These don't do anything in an interface declaration.
1 parent 649deb2 commit e99ea09

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/scijava/thread/ThreadService.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public interface ThreadService extends SciJavaService, ThreadFactory {
9898
* @throws InvocationTargetException If an uncaught exception occurs in the
9999
* code during execution.
100100
*/
101-
void invoke(final Runnable code) throws InterruptedException,
101+
void invoke(Runnable code) throws InterruptedException,
102102
InvocationTargetException;
103103

104104
/**
@@ -111,7 +111,7 @@ void invoke(final Runnable code) throws InterruptedException,
111111
*
112112
* @param code The code to execute.
113113
*/
114-
void queue(final Runnable code);
114+
void queue(Runnable code);
115115

116116
/**
117117
* Returns the thread that called the specified thread.
@@ -122,5 +122,5 @@ void invoke(final Runnable code) throws InterruptedException,
122122
* @param thread the managed thread, null refers to the current thread
123123
* @return the thread that asked the {@link ThreadService} to spawn the specified thread
124124
*/
125-
Thread getParent(final Thread thread);
125+
Thread getParent(Thread thread);
126126
}

0 commit comments

Comments
 (0)