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

Comparing jsr166/src/main/java/util/AbstractCollection.java (file contents):
Revision 1.4 by dl, Mon Nov 28 23:53:32 2005 UTC vs.
Revision 1.7 by jsr166, Sun Mar 19 18:09:12 2006 UTC

# Line 1 | Line 1
1   /*
2   * %W% %E%
3   *
4 < * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
4 > * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5   * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6   */
7  
# Line 36 | Line 36 | package java.util;
36   *
37   * @author  Josh Bloch
38   * @author  Neal Gafter
39 < * @version 1.24, 01/18/03
39 > * @version %I%, %G%
40   * @see Collection
41   * @since 1.2
42   */
# Line 170 | Line 170 | public abstract class AbstractCollection
170                  }
171                  r = Arrays.copyOf(r, newCap);
172              }
173 <         }
173 >        }
174          // trim if overallocated
175          return i == r.length ? r : Arrays.copyOf(r, i);
176      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines