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

Comparing jsr166/src/main/java/util/concurrent/ReadWriteLock.java (file contents):
Revision 1.3 by dl, Sat Jun 7 18:20:21 2003 UTC vs.
Revision 1.4 by dl, Tue Jun 24 14:34:48 2003 UTC

# Line 81 | Line 81 | package java.util.concurrent;
81   * @spec JSR-166
82   * @revised $Date$
83   * @editor $Author$
84 <
84 > * @author Doug Lea
85   */
86   public interface ReadWriteLock {
87      /**
88       * Return the lock used for reading.
89       **/
90 <    public Lock readLock();
90 >    Lock readLock();
91  
92      /**
93       * Return the lock used for writing.
94       **/
95 <    public Lock writeLock();
95 >    Lock writeLock();
96   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines