Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / reflection / ReflectionUtils.java
index 87a0b8c5e7b47741721ac8cd182cdaacb99f1537..ee18b11521d1cdca4eba85c9c92438d82a8452f0 100644 (file)
@@ -8,12 +8,12 @@ import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 
-
 public class ReflectionUtils {
     /**
-     * Wraps a type by the corresponding wrapper type if it is a primitive
-     * type.
-     * @param aClass Type to wrap.
+     * Wraps a type by the corresponding wrapper type if it is a primitive type.
+     * 
+     * @param aClass
+     *            Type to wrap.
      * @return Wrapped type for primitives or the provided argument value.
      */
     public static Class wrapIfNeeded(Class aClass) {
@@ -74,8 +74,8 @@ public class ReflectionUtils {
                 aFound.put(method.getName(), method);
             } else {
                 // super class method. Check for override.
-                if (!Arrays.equals(superMethod.getParameterTypes(),
-                            method.getParameterTypes())) {
+                if (!Arrays.equals(superMethod.getParameterTypes(), method
+                    .getParameterTypes())) {
                     // parameters differ so this is a new method.
                     aFound.put(method.getName(), method);
                 }