ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ThreadPoolExecutor.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ThreadPoolExecutor.java (file contents):
Revision 1.146 by jsr166, Wed Feb 13 17:58:16 2013 UTC vs.
Revision 1.147 by jsr166, Wed May 15 02:39:59 2013 UTC

# Line 1411 | Line 1411 | public class ThreadPoolExecutor extends
1411       * ignored or suppressed interruption, causing this executor not
1412       * to properly terminate.
1413       *
1414 <     * @return true if terminating but not yet terminated
1414 >     * @return {@code true} if terminating but not yet terminated
1415       */
1416      public boolean isTerminating() {
1417          int c = ctl.get();
# Line 1715 | Line 1715 | public class ThreadPoolExecutor extends
1715       * remove those Futures that have been cancelled.
1716       *
1717       * @param task the task to remove
1718 <     * @return true if the task was removed
1718 >     * @return {@code true} if the task was removed
1719       */
1720      public boolean remove(Runnable task) {
1721          boolean removed = workQueue.remove(task);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines