--- jsr166/src/main/java/util/ArrayList.java 2005/11/28 23:53:32 1.13 +++ jsr166/src/main/java/util/ArrayList.java 2005/12/12 00:04:16 1.15 @@ -1,7 +1,7 @@ /* * %W% %E% * - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ @@ -190,7 +190,7 @@ public class ArrayList extends Abstra */ private void growArray(int minCapacity) { if (minCapacity < 0) // overflow - throw new OutOfMemoryError(); + throw new OutOfMemoryError(); int oldCapacity = elementData.length; // Double size if small; else grow by 50% int newCapacity = ((oldCapacity < 64)?