< prev index next >

src/java.base/share/classes/java/util/concurrent/ExecutorService.java

Print this page
8234131: Miscellaneous changes imported from jsr166 CVS 2021-01
Reviewed-by: martin

@@ -115,11 +115,11 @@
  *       pool.shutdownNow(); // Cancel currently executing tasks
  *       // Wait a while for tasks to respond to being cancelled
  *       if (!pool.awaitTermination(60, TimeUnit.SECONDS))
  *           System.err.println("Pool did not terminate");
  *     }
- *   } catch (InterruptedException ie) {
+ *   } catch (InterruptedException ex) {
  *     // (Re-)Cancel if current thread also interrupted
  *     pool.shutdownNow();
  *     // Preserve interrupt status
  *     Thread.currentThread().interrupt();
  *   }
< prev index next >