diff options
Diffstat (limited to 'libjava/classpath/vm/reference/java/lang/reflect')
3 files changed, 12 insertions, 13 deletions
diff --git a/libjava/classpath/vm/reference/java/lang/reflect/VMConstructor.java b/libjava/classpath/vm/reference/java/lang/reflect/VMConstructor.java index dbed90388a3..c6f3190268b 100644 --- a/libjava/classpath/vm/reference/java/lang/reflect/VMConstructor.java +++ b/libjava/classpath/vm/reference/java/lang/reflect/VMConstructor.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -47,7 +47,7 @@ final class VMConstructor Class clazz; int slot; - /** + /** * This field allows us to refer back to the main constructor instance. * It is set by the constructor of Constructor. */ @@ -97,7 +97,7 @@ final class VMConstructor * is no Signature attribute, return null. */ native String getSignature(); - + /** * <p> * Return an array of arrays representing the annotations on each @@ -112,7 +112,7 @@ final class VMConstructor * The returned annotations are serialized. Changing the annotations has * no affect on the return value of future calls to this method. * </p> - * + * * @return an array of arrays which represents the annotations used on the * parameters of this constructor. The order of the array elements * matches the declaration order of the parameters. @@ -134,7 +134,7 @@ final class VMConstructor { if (!(o instanceof Constructor)) return false; - Constructor that = (Constructor)o; + Constructor that = (Constructor)o; if (clazz != that.getDeclaringClass()) return false; if (!Arrays.equals(getParameterTypes(), that.getParameterTypes())) diff --git a/libjava/classpath/vm/reference/java/lang/reflect/VMField.java b/libjava/classpath/vm/reference/java/lang/reflect/VMField.java index 53f38474952..ee9239a8e2f 100644 --- a/libjava/classpath/vm/reference/java/lang/reflect/VMField.java +++ b/libjava/classpath/vm/reference/java/lang/reflect/VMField.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -45,8 +45,8 @@ final class VMField Class clazz; String name; int slot; - - /** + + /** * This field allows us to refer back to the main constructor instance. * It is set by the constructor of Field. */ @@ -512,7 +512,7 @@ final class VMField { if (!(o instanceof Field)) return false; - Field that = (Field)o; + Field that = (Field)o; if (clazz != that.getDeclaringClass()) return false; if (!name.equals(that.getName())) diff --git a/libjava/classpath/vm/reference/java/lang/reflect/VMMethod.java b/libjava/classpath/vm/reference/java/lang/reflect/VMMethod.java index f8574cd87a2..d8bb8b4a3b0 100644 --- a/libjava/classpath/vm/reference/java/lang/reflect/VMMethod.java +++ b/libjava/classpath/vm/reference/java/lang/reflect/VMMethod.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -48,7 +48,7 @@ final class VMMethod String name; int slot; - /** + /** * This field allows us to refer back to the main constructor instance. * It is set by the constructor of Field. */ @@ -129,7 +129,7 @@ final class VMMethod * The returned annotations are serialized. Changing the annotations has * no affect on the return value of future calls to this method. * </p> - * + * * @return an array of arrays which represents the annotations used on the * parameters of this method. The order of the array elements * matches the declaration order of the parameters. @@ -206,4 +206,3 @@ final class VMMethod native Annotation[] getDeclaredAnnotations(); } - |