From 548ce8be4ab154b7d7f42ae8fe8552f9888021d0 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sun, 16 Jun 2002 21:15:44 +0000 Subject: RuntimeException.java: Re-merge with Classpath. * java/lang/RuntimeException.java: Re-merge with Classpath. * java/util/ArrayList.java: Likewise. * java/util/Arrays.java: Likewise. * java/util/BitSet.java: Likewise. * java/util/Dictionary.java: Likewise. * java/util/IdentityHashMap.java: Likewise. * java/util/MissingResourceException.java: Likewise. * java/util/Observer.java: Likewise. * java/util/TooManyListenersException.java: Likewise. * java/util/zip/DataFormatException.java: Likewise. * java/util/zip/ZipException.java: Likewise. From-SVN: r54680 --- libjava/java/util/Dictionary.java | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'libjava/java/util/Dictionary.java') diff --git a/libjava/java/util/Dictionary.java b/libjava/java/util/Dictionary.java index 401e45a..53c4d64 100644 --- a/libjava/java/util/Dictionary.java +++ b/libjava/java/util/Dictionary.java @@ -1,6 +1,6 @@ /* Dictionary.java -- an abstract (and essentially worthless) class which is Hashtable's superclass - Copyright (C) 1998, 2001 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -47,18 +47,21 @@ package java.util; * People at Javasoft are probably embarrassed by it. At this point, * it might as well be an interface rather than a class, but it remains * this poor, laughable skeleton for the sake of backwards compatibility. - * At any rate, this was what came before the
Map
interface + * At any rate, this was what came before the {@link Map} interface * in the Collections framework. * * @author Jon Zeppieri - * @author Eric Blake + * @author Eric Blake (ebb9@email.byu.edu) * @see Map * @see Hashtable * @since 1.0 * @status updated to 1.4 */ -public abstract class Dictionary extends Object +public abstract class Dictionary { + // WARNING: Dictionary is a CORE class in the bootstrap cycle. See the + // comments in vm/reference/java/lang/Runtime for implications of this fact. + /** * Sole constructor (often called implicitly). */ @@ -130,4 +133,4 @@ public abstract class Dictionary extends Object * @return the number of keys in the Dictionary */ public abstract int size(); -} +} // class Dictionary -- cgit v1.1