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:
parent
0a32f469ac
commit
4d2446d99e
16 changed files with 57 additions and 39 deletions
|
@ -1,5 +1,5 @@
|
|||
/* java.lang.Object - The universal superclass in Java
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2007
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
@ -129,7 +129,7 @@ public class Object
|
|||
*
|
||||
* @return the class of this Object
|
||||
*/
|
||||
public final native Class getClass();
|
||||
public final native Class<? extends Object> getClass();
|
||||
|
||||
/**
|
||||
* Get a value that represents this Object, as uniquely as
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue