Commit 66719604 by Tom Tromey Committed by Michael Koch

ClassLoader.java (loadedClasses): Declare as HashMap.

2004-09-24  Tom Tromey  <tromey@redhat.com>

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

From-SVN: r88027
parent 07a8bdf8
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> 2004-09-24 Michael Koch <konqueror@gmx.de>
* java/io/ObjectInputStream.java: * java/io/ObjectInputStream.java:
......
/* ClassLoader.java -- responsible for loading classes into the VM /* 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. This file is part of GNU Classpath.
...@@ -122,13 +122,13 @@ public abstract class ClassLoader ...@@ -122,13 +122,13 @@ public abstract class ClassLoader
* is not private in order to allow native code (and trusted subclasses) * is not private in order to allow native code (and trusted subclasses)
* access to this field. * 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 * All packages defined by this classloader. It is not private in order to
* allow native code (and trusted subclasses) access to this field. * 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. * The classloader that is consulted before this classloader.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment