ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java
(Generate patch)

Comparing jsr166/src/test/tck/ThreadPoolExecutorSubclassTest.java (file contents):
Revision 1.33 by jsr166, Wed Dec 31 19:05:43 2014 UTC vs.
Revision 1.34 by jsr166, Wed Dec 31 20:28:55 2014 UTC

# Line 58 | Line 58 | public class ThreadPoolExecutorSubclassT
58          CustomTask(final Runnable r, final V res) {
59              if (r == null) throw new NullPointerException();
60              callable = new Callable<V>() {
61 <            public V call() throws Exception { r.run(); return res; }};
61 >                public V call() throws Exception { r.run(); return res; }};
62          }
63          public boolean isDone() {
64              lock.lock(); try { return done; } finally { lock.unlock() ; }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines