This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: FYI: PropertyResourceBundle fixlet


I'm checking this in.
Another spec divergence bug.

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>
	* java/util/PropertyResourceBundle.java (handleGetObject): Now
	public.

Index: java/util/PropertyResourceBundle.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/util/PropertyResourceBundle.java,v
retrieving revision 1.5
diff -u -r1.5 PropertyResourceBundle.java
--- java/util/PropertyResourceBundle.java 2001/08/31 21:31:20 1.5
+++ java/util/PropertyResourceBundle.java 2001/10/23 23:54:03
@@ -1,5 +1,5 @@
 /* java.util.PropertyResourceBundle
-   Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -111,7 +111,7 @@
    * @param key The key of the resource.
    * @return The resource for the key or null if it doesn't exists.
    */
-  protected Object handleGetObject(String key)
+  public Object handleGetObject(String key)
   {
     return properties.getProperty(key);
   }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]