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

Comparing jsr166/src/jsr166e/SequenceLock.java (file contents):
Revision 1.16 by jsr166, Mon Dec 5 04:50:19 2011 UTC vs.
Revision 1.18 by jsr166, Wed Jul 4 20:13:53 2012 UTC

# Line 503 | Line 503 | public class SequenceLock implements Loc
503       * @throws IllegalMonitorStateException if the current thread does not
504       *         hold this lock
505       */
506 <    public void unlock()              { sync.release(1); }
506 >    public void unlock() { sync.release(1); }
507  
508      /**
509       * Throws UnsupportedOperationException. SequenceLocks
# Line 511 | Line 511 | public class SequenceLock implements Loc
511       *
512       * @throws UnsupportedOperationException
513       */
514 <    public Condition newCondition()   {
514 >    public Condition newCondition() {
515          throw new UnsupportedOperationException();
516      }
517  
# Line 636 | Line 636 | public class SequenceLock implements Loc
636      }
637  
638   }
639

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines