LogManager.java (loggers): Genericized.

* java/util/logging/LogManager.java (loggers): Genericized.
	(addLogger): Merged.
	(findAncestor): Likewise.
	(getLogger): Likewise.
	(getLoggerNames): Genericized.
	(reset): Merged.
	(getLevelProperty): Likewise.
	* java/lang/reflect/Method.java (getDeclaringClass): Genericized.
	* java/lang/reflect/Constructor.java (getParameterTypes):
	Genericized.
	(getExceptionTypes): Likewise.
	(newInstance): Likewise.
	* java/lang/reflect/Array.java (newInstance): Genericized.
	* java/lang/Object.java (getClass): Genericized.
	* java/nio/charset/spi/CharsetProvider.java (charsets):
	Genericized.
	* java/text/Collator.java: Implement Comparable<Object>.

From-SVN: r121473
This commit is contained in:
Tom Tromey 2007-02-01 21:36:01 +00:00 committed by Tom Tromey
parent 0a32f469ac
commit 4d2446d99e
16 changed files with 57 additions and 39 deletions

View file

@ -1,5 +1,5 @@
/* CharsetProvider.java -- charset service provider interface
Copyright (C) 2002, 2006 Free Software Foundation
Copyright (C) 2002, 2006, 2007 Free Software Foundation
This file is part of GNU Classpath.
@ -83,7 +83,7 @@ public abstract class CharsetProvider
* @return the iterator
* @see Charset#availableCharsets()
*/
public abstract Iterator charsets();
public abstract Iterator<Charset> charsets();
/**
* Returns the named charset, by canonical name or alias.