From b36b070c7908e5cbfdb4835c45d7668b0d17dba3 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 24 Oct 2001 00:01:15 +0000 Subject: PropertyResourceBundle.java (handleGetObject): Now public. * java/util/PropertyResourceBundle.java (handleGetObject): Now public. * java/util/ListResourceBundle.java (handleGetObject): Now public and final, per spec. From-SVN: r46452 --- libjava/java/util/PropertyResourceBundle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libjava/java/util/PropertyResourceBundle.java') diff --git a/libjava/java/util/PropertyResourceBundle.java b/libjava/java/util/PropertyResourceBundle.java index 3a5629c..59815eb 100644 --- a/libjava/java/util/PropertyResourceBundle.java +++ b/libjava/java/util/PropertyResourceBundle.java @@ -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 @@ public class PropertyResourceBundle extends ResourceBundle * @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); } -- cgit v1.1