ClassLoader.java (loadedClasses): Declare as HashMap.
authorTom Tromey <tromey@redhat.com>
Fri, 24 Sep 2004 11:25:42 +0000 (11:25 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Fri, 24 Sep 2004 11:25:42 +0000 (11:25 +0000)
2004-09-24  Tom Tromey  <tromey@redhat.com>

* java/lang/ClassLoader.java (loadedClasses): Declare as HashMap.
(definedPackages): Likewise.

From-SVN: r88027

libjava/ChangeLog
libjava/java/lang/ClassLoader.java

index b820fd80487d59d1a9bcc31ab83f1917874c6d7a..107a673c3e34de90ac295f49b2b967a38ff80a56 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-24  Tom Tromey  <tromey@redhat.com>
+
+       * java/lang/ClassLoader.java (loadedClasses): Declare as HashMap.
+       (definedPackages): Likewise.
+
 2004-09-24  Michael Koch  <konqueror@gmx.de>
 
        * java/io/ObjectInputStream.java:
index 60d7a7f9e021ec572a6fe00a2cb68635fc42fef0..75f07169f390d85211c03e781f9a1bcd8ad4717a 100644 (file)
@@ -1,5 +1,5 @@
 /* ClassLoader.java -- responsible for loading classes into the VM
-   Copyright (C) 1998, 1999, 2001, 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -122,13 +122,13 @@ public abstract class ClassLoader
    * is not private in order to allow native code (and trusted subclasses)
    * access to this field.
    */
-  final Map loadedClasses = new HashMap();
+  final HashMap loadedClasses = new HashMap();
 
   /**
    * All packages defined by this classloader. It is not private in order to
    * allow native code (and trusted subclasses) access to this field.
    */
-  final Map definedPackages = new HashMap();
+  final HashMap definedPackages = new HashMap();
 
   /**
    * The classloader that is consulted before this classloader.