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.10 by dl, Wed Jun 11 13:17:20 2003 UTC vs.
Revision 1.11 by jozart, Wed Jun 18 10:18:36 2003 UTC

# Line 26 | Line 26 | public class Executors {
26       * A wrapper class that exposes only the ExecutorService methods
27       * of an implementation.
28       */
29 <    static private class DelegatedExecutorService implements ExecutorService {
29 >    private static class DelegatedExecutorService implements ExecutorService {
30          private final ExecutorService e;
31          DelegatedExecutorService(ExecutorService executor) { e = executor; }
32          public void execute(Runnable command) { e.execute(command); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines