X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libjava%2Fjava%2Futil%2FIdentityHashMap.java;fp=libjava%2Fjava%2Futil%2FIdentityHashMap.java;h=54f4aca81e2250404e1ea7039a9d329374e672c7;hb=e9739f5f664c690b0e9c27b757ed7a19b8a2c265;hp=5b2e9967c707e5a4e0dca994b1b6e98b23feefb1;hpb=232c987dd68d55e3ea9b21082acaa703040154d0;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libjava/java/util/IdentityHashMap.java b/libjava/java/util/IdentityHashMap.java index 5b2e9967c70..54f4aca81e2 100644 --- a/libjava/java/util/IdentityHashMap.java +++ b/libjava/java/util/IdentityHashMap.java @@ -1,6 +1,6 @@ /* IdentityHashMap.java -- a class providing a hashtable data structure, mapping Object --> Object, which uses object identity for hashing. - Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -78,8 +78,8 @@ import java.io.Serializable; * iterator, and in the case of the entrySet, the Map.Entry, to * fail with a {@link ConcurrentModificationException}. * - * @author Tom Tromey - * @author Eric Blake + * @author Tom Tromey (tromey@redhat.com) + * @author Eric Blake (ebb9@email.byu.edu) * @see System#identityHashCode(Object) * @see Collection * @see Map @@ -676,8 +676,8 @@ public class IdentityHashMap extends AbstractMap * creates the appropriate Map.Entry object with the correct fail-fast * semantics and identity comparisons. * - * @author Tom Tromey - * @author Eric Blake + * @author Tom Tromey (tromey@redhat.com) + * @author Eric Blake (ebb9@email.byu.edu) */ private class IdentityIterator implements Iterator { @@ -769,7 +769,7 @@ public class IdentityHashMap extends AbstractMap * the general contract of Map.Entry, and is probably unsuitable for * comparison to normal maps; but it works among other IdentityHashMaps. * - * @author Eric Blake + * @author Eric Blake (ebb9@email.byu.edu) */ private final class IdentityEntry implements Map.Entry {