+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.
+
2004-05-05 Guilhem Lavaux <guilhem@kaffe.org>
* java/text/SimpleDateFormat.java:
package java.security;
-import java.io.Serializable;
-import java.util.Random;
-import java.util.Enumeration;
-
import gnu.java.security.Engine;
+import java.util.Enumeration;
+import java.util.Random;
+
/**
* An interface to a cryptographically secure pseudo-random number
* generator (PRNG). Random (or at least unguessable) numbers are used
String key;
String classname = null;
- int i, flag = 0;
+ int i;
Enumeration e;
for (i = 0; i < p.length; i++)
{
package java.security;
-import java.io.Serializable;
// All uses of Certificate in this file refer to the one in the listed
// package, not this one.
import java.security.cert.Certificate;
package java.text;
import gnu.java.text.FormatCharacterIterator;
-
-import java.util.Set;
-import java.util.Map;
-import java.util.HashSet;
-import java.util.HashMap;
import java.io.Serializable;
/**
int curYear = 1900 + new Date().getYear();
int firstYear = curYear - 80;
year = firstYear / 100 * 100 + num;
- int yx = year;
if (year < firstYear)
year += 100;
}
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
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
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
private final RE re;
- private Pattern (String regex)
- throws PatternSyntaxException
- {
- this (regex, 0);
- }
-
private Pattern (String regex, int flags)
throws PatternSyntaxException
{