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

Comparing jsr166/src/main/java/util/concurrent/PriorityBlockingQueue.java (file contents):
Revision 1.44 by dl, Wed May 25 14:05:27 2005 UTC vs.
Revision 1.45 by dl, Sun Jun 19 23:01:48 2005 UTC

# Line 160 | Line 160 | public class PriorityBlockingQueue<E> ex
160       * @throws NullPointerException if the specified element is null
161       */
162      public boolean offer(E e) {
163        if (e == null) throw new NullPointerException();
163          final ReentrantLock lock = this.lock;
164          lock.lock();
165          try {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines