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

Comparing jsr166/src/main/java/util/concurrent/ExecutorCompletionService.java (file contents):
Revision 1.18 by jsr166, Tue Sep 11 17:57:19 2007 UTC vs.
Revision 1.19 by jsr166, Fri Oct 22 05:49:04 2010 UTC

# Line 168 | Line 168 | public class ExecutorCompletionService<V
168          return completionQueue.poll();
169      }
170  
171 <    public Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException {
171 >    public Future<V> poll(long timeout, TimeUnit unit)
172 >            throws InterruptedException {
173          return completionQueue.poll(timeout, unit);
174      }
175  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines