diff options
author | Tom Tromey <tromey@redhat.com> | 2004-05-05 06:52:56 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-05-05 06:52:56 +0000 |
commit | d70bd7fff0dc91c22ce7e118b90dc91bfa1e935a (patch) | |
tree | ae1295a2cbf6b92797373cf8b0f3b4f994aac009 /libjava/java/util/ResourceBundle.java | |
parent | b335a54914864ff4da3ddd7493487b75844dd1bb (diff) | |
download | gcc-d70bd7fff0dc91c22ce7e118b90dc91bfa1e935a.zip gcc-d70bd7fff0dc91c22ce7e118b90dc91bfa1e935a.tar.gz gcc-d70bd7fff0dc91c22ce7e118b90dc91bfa1e935a.tar.bz2 |
Format.java: Cleaned up imports.
2004-05-05 Tom Tromey <tromey@redhat.com>
* java/text/Format.java: Cleaned up imports.
* java/text/DecimalFormat.java: Cleaned up imports.
* java/security/SecureRandom.java: Cleaned up imports.
(SecureRandom): Removed unused variable.
* java/security/UnresolvedPermission.java: Cleaned up imports.
* java/util/Date.java (parse): Removed unused variable.
* java/util/ResourceBundle.java: Cleaned up imports.
(getBundle): Removed unused variable.
(tryBundle): Likewise.
* java/util/regex/Pattern.java (Pattern): Removed unused constructor.
From-SVN: r81503
Diffstat (limited to 'libjava/java/util/ResourceBundle.java')
-rw-r--r-- | libjava/java/util/ResourceBundle.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libjava/java/util/ResourceBundle.java b/libjava/java/util/ResourceBundle.java index 6663bd4..264152a 100644 --- a/libjava/java/util/ResourceBundle.java +++ b/libjava/java/util/ResourceBundle.java @@ -42,7 +42,6 @@ import java.lang.ref.Reference; import java.lang.ref.SoftReference; import java.io.InputStream; import java.io.IOException; -import gnu.classpath.Configuration; /** * A resource bundle contains locale-specific data. If you need localized @@ -345,7 +344,6 @@ public abstract class ResourceBundle else if (cache.containsKey(name)) { Reference ref = (Reference) cache.get(name); - ResourceBundle result = null; // If REF is null, that means that we added a `null' value to // the hash map. That means we failed to find the bundle // previously, and we cached that fact. The JDK does this, so @@ -440,7 +438,6 @@ public abstract class ResourceBundle if (cache.containsKey(localizedName)) { Reference ref = (Reference) cache.get(localizedName); - ResourceBundle result = null; // If REF is null, that means that we added a `null' value to // the hash map. That means we failed to find the bundle // previously, and we cached that fact. The JDK does this, so |