diff options
author | Brad Fitzpatrick <bradfitz@android.com> | 2011-01-12 00:04:20 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-01-12 00:04:20 -0800 |
commit | 68095f6a01a2e252413aac649d56cf6dc3c62409 (patch) | |
tree | d937857b614e93d4a6a37793bc45881cf4b559d9 /luni/src/main/java | |
parent | 99d1e354bc4faaeac8a6de338c7e56964af030ea (diff) | |
parent | 6ead9d748abcf4e7a0b3359ffac24bad8168f284 (diff) | |
download | libcore-68095f6a01a2e252413aac649d56cf6dc3c62409.zip libcore-68095f6a01a2e252413aac649d56cf6dc3c62409.tar.gz libcore-68095f6a01a2e252413aac649d56cf6dc3c62409.tar.bz2 |
am 6ead9d74: am 6e35a860: Merge "Fix @see links" into gingerbread
* commit '6ead9d748abcf4e7a0b3359ffac24bad8168f284':
Fix @see links
Diffstat (limited to 'luni/src/main/java')
-rw-r--r-- | luni/src/main/java/java/lang/Class.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/luni/src/main/java/java/lang/Class.java b/luni/src/main/java/java/lang/Class.java index 8ade55d..ff1a5d3 100644 --- a/luni/src/main/java/java/lang/Class.java +++ b/luni/src/main/java/java/lang/Class.java @@ -459,7 +459,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe * @throws SecurityException * if a security manager exists and it does not allow member * access. - * @see #getDeclaredConstructor(Class...) + * @see #getDeclaredConstructor(Class[]) */ @SuppressWarnings("unchecked") public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException, @@ -566,7 +566,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe * @throws SecurityException * if a security manager exists and it does not allow member * access. - * @see #getConstructor(Class...) + * @see #getConstructor(Class[]) */ @SuppressWarnings("unchecked") public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes) @@ -716,7 +716,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe * @throws SecurityException * if a security manager exists and it does not allow member * access. - * @see #getMethod(String, Class...) + * @see #getMethod(String, Class[]) */ public Method getDeclaredMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException, SecurityException { @@ -967,7 +967,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe * @throws SecurityException * if a security manager exists and it does not allow member * access. - * @see #getDeclaredMethod(String, Class...) + * @see #getDeclaredMethod(String, Class[]) */ public Method getMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException, SecurityException { |