diff --git a/src/dorkbox/util/ParallelProcessor.java b/src/dorkbox/util/ParallelProcessor.java index 4142b34..670bfed 100644 --- a/src/dorkbox/util/ParallelProcessor.java +++ b/src/dorkbox/util/ParallelProcessor.java @@ -169,7 +169,7 @@ class ParallelProcessor { public void doneQueueingTasks() throws InterruptedException { for (int i = 0; i < threads.size(); i++) { - // this tells out threads that we have finished work and can exit + // this tells our threads that we have finished work and can exit queue.put(SENTINEL); } }