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

Comparing jsr166/src/main/java/util/concurrent/ExecutorService.java (file contents):
Revision 1.47 by dl, Fri Jul 14 11:01:44 2006 UTC vs.
Revision 1.48 by jsr166, Mon Jul 17 02:55:01 2006 UTC

# Line 91 | Line 91 | import java.security.PrivilegedException
91   *           System.err.println("Pool did not terminate");
92   *     }
93   *   } catch (InterruptedException ie) {
94 < *     pool.shutdownNow(); // (Re-)Cancel if current thread also interrupted
95 < *     Thread.currentThread().interrupt(); // Preserve interrupt status
94 > *     // (Re-)Cancel if current thread also interrupted
95 > *     pool.shutdownNow();
96 > *     // Preserve interrupt status
97 > *     Thread.currentThread().interrupt();
98   *   }
99   * }
100   * </pre>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines