summaryrefslogtreecommitdiff
path: root/java/util/AbstractList.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/util/AbstractList.java')
-rw-r--r--java/util/AbstractList.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/util/AbstractList.java b/java/util/AbstractList.java
index 42eeefe4b..37288a7bb 100644
--- a/java/util/AbstractList.java
+++ b/java/util/AbstractList.java
@@ -1,5 +1,5 @@
/* AbstractList.java -- Abstract implementation of most of List
- Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -59,7 +59,7 @@ package java.util;
*
* @author Original author unknown
* @author Bryce McKinlay
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
* @see Collection
* @see List
* @see AbstractSequentialList
@@ -757,7 +757,7 @@ while (i.hasNext())
* by using a non-public top-level class in the same package.
*
* @author Original author unknown
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
*/
private static class SubList extends AbstractList
{
@@ -1204,7 +1204,7 @@ while (i.hasNext())
* This class is a RandomAccess version of SubList, as required by
* {@link AbstractList#subList(int, int)}.
*
- * @author Eric Blake <ebb9@email.byu.edu>
+ * @author Eric Blake (ebb9@email.byu.edu)
*/
private static final class RandomAccessSubList extends SubList
implements RandomAccess