Skip to content

Commit 89709c7

Browse files
committed
Fix enum value.
1 parent 3f0c8bc commit 89709c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rococoa/rococoa-contrib/src/main/java/org/rococoa/contrib/dispatch/GCDExecutorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public void run() {
244244
super.run();
245245
} finally {
246246
tasks.remove(invocation.id());
247-
if ( state == State.SHUTDOWN ) {
247+
if ( state == GCDExecutorService.State.SHUTDOWN ) {
248248
//i.e. this is the last item on the queue
249249
terminateIfDone(queue.operationCount().intValue() <= 1);
250250
}

0 commit comments

Comments
 (0)