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

Comparing jsr166/src/main/java/util/Collections.java (file contents):
Revision 1.7 by jsr166, Wed May 18 03:45:35 2005 UTC vs.
Revision 1.8 by dl, Wed May 25 14:05:06 2005 UTC

# Line 3567 | Line 3567 | public class Collections {
3567  
3568      static class AsLIFOQueue<E> extends AbstractQueue<E>
3569          implements Queue<E>, Serializable {
3570 +        private static final long serialVersionUID = 1802017725587941708L;
3571          private final Deque<E> q;
3572          AsLIFOQueue(Deque<E> q)            { this.q = q; }
3573          public boolean offer(E e)          { return q.offerFirst(e); }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines