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

Comparing jsr166/src/main/java/util/concurrent/DelayQueue.java (file contents):
Revision 1.61 by jsr166, Wed Jan 16 01:59:47 2013 UTC vs.
Revision 1.62 by jsr166, Fri Jan 18 04:23:28 2013 UTC

# Line 41 | Line 41 | import java.util.*;
41   public class DelayQueue<E extends Delayed> extends AbstractQueue<E>
42      implements BlockingQueue<E> {
43  
44 <    private transient final ReentrantLock lock = new ReentrantLock();
44 >    private final transient ReentrantLock lock = new ReentrantLock();
45      private final PriorityQueue<E> q = new PriorityQueue<E>();
46  
47      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines