diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-01 21:36:01 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-01 21:36:01 +0000 |
commit | aab175428401b9ab51e99f673fc648479e228197 (patch) | |
tree | 57fd94d4413c128908a347a3f33787de9c0a3880 /libjava/java/lang/reflect/Array.java | |
parent | 501270975a91bb86caf11a27390868612ca897d3 (diff) | |
download | ppe42-gcc-aab175428401b9ab51e99f673fc648479e228197.tar.gz ppe42-gcc-aab175428401b9ab51e99f673fc648479e228197.zip |
* 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>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121473 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/lang/reflect/Array.java')
-rw-r--r-- | libjava/java/lang/reflect/Array.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/lang/reflect/Array.java b/libjava/java/lang/reflect/Array.java index 32bed06ee02..639cc0e02db 100644 --- a/libjava/java/lang/reflect/Array.java +++ b/libjava/java/lang/reflect/Array.java @@ -1,5 +1,5 @@ /* java.lang.reflect.Array - manipulate arrays by reflection - Copyright (C) 1998, 1999, 2001, 2003, 2005 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2001, 2003, 2005, 2007 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -104,7 +104,7 @@ public final class Array * @throws NegativeArraySizeException when length is less than 0 * @throws OutOfMemoryError if memory allocation fails */ - public static native Object newInstance(Class componentType, int length); + public static native Object newInstance(Class<?> componentType, int length); /** * Creates a new multi-dimensioned array. The new array has the same @@ -130,7 +130,7 @@ public final class Array * than 0 * @throws OutOfMemoryError if memory allocation fails */ - public static native Object newInstance(Class elementType, int[] dimensions); + public static native Object newInstance(Class<?> elementType, int[] dimensions); /** * Gets the array length. |