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.32 by tim, Wed Dec 10 01:51:11 2003 UTC vs.
Revision 1.33 by tim, Wed Dec 10 02:24:00 2003 UTC

# Line 31 | Line 31 | public class Executors {
31          DelegatedExecutorService(ExecutorService executor) { e = executor; }
32          public void execute(Runnable command) { e.execute(command); }
33          public void shutdown() { e.shutdown(); }
34 <        public List shutdownNow() { return e.shutdownNow(); }
34 >        public List<Runnable> shutdownNow() { return e.shutdownNow(); }
35          public boolean isShutdown() { return e.isShutdown(); }
36          public boolean isTerminated() { return e.isTerminated(); }
37          public boolean awaitTermination(long timeout, TimeUnit unit)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines