diff options
Diffstat (limited to 'libjava/classpath/vm/reference/java/lang/reflect/VMConstructor.java')
-rw-r--r-- | libjava/classpath/vm/reference/java/lang/reflect/VMConstructor.java | 10 |
1 files changed, 5 insertions, 5 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())) |