* src/lib/gnu/java/lang/reflect/Method.java
[cacao.git] / src / lib / gnu / sun / reflect / annotation / AnnotationParser.java
index c745ad3a3bde20ca5f707a1f7f8b53d8674d5e36..fe361fb835b72837b05f93e61fddccceb3689789 100644 (file)
@@ -71,8 +71,8 @@ public class AnnotationParser {
     public static Annotation[][] parseParameterAnnotations(
                     byte[] parameterAnnotations,
                     ConstantPool constPool,
-                   Class container,
-                   int numParameters) {
+                    Class container,
+                    int numParameters) {
         if (parameterAnnotations == null)
             return new Annotation[numParameters][0];
 
@@ -453,10 +453,10 @@ public class AnnotationParser {
     private static Class<?> parseSig(String sig, Class container) {
         if (sig.equals("V")) {
             return void.class;
-       }
-       else {
+        }
+        else {
             return toClass(new FieldSignatureParser(container, sig).getFieldType());
-       }
+        }
     }
 
     static Class<?> toClass(Type o) {