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

Comparing jsr166/src/main/java/util/concurrent/Executors.java (file contents):
Revision 1.98 by jsr166, Wed Aug 16 17:18:34 2017 UTC vs.
Revision 1.99 by jsr166, Sat Jan 20 20:44:22 2018 UTC

# Line 649 | Line 649 | public class Executors {
649       * of an ExecutorService implementation.
650       */
651      private static class DelegatedExecutorService
652 <            extends AbstractExecutorService {
652 >            implements ExecutorService {
653          private final ExecutorService e;
654          DelegatedExecutorService(ExecutorService executor) { e = executor; }
655          public void execute(Runnable command) { e.execute(command); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines