(no commit message)
[utils] / support / general / src / main / java / org / wamblee / reflection / AnnotationUtils.java
index dad07b5ffae13621a1e74f3be347528d15d52b98..3dd4d3ef396ef24adb222125243d637d82f4af45 100644 (file)
@@ -22,10 +22,10 @@ import java.util.ArrayList;
 import java.util.List;
 
 /**
- * Utlities for working with annotations. 
+ * Utlities for working with annotations.
  * 
  * @author Erik Brakkee
- *
+ * 
  */
 public class AnnotationUtils {
 
@@ -36,12 +36,12 @@ public class AnnotationUtils {
      *            Class to analyse.
      * @param aAnnotation
      *            Annotation that must be present.
-     * @return List of accessors. Empty list is returned if no match is found. 
+     * @return List of accessors. Empty list is returned if no match is found.
      */
     public static List<Accessor> analyse(Class aClass,
         Class<? extends Annotation> aAnnotation) {
-        List<Accessor> result = new ArrayList<Accessor>(); 
-        
+        List<Accessor> result = new ArrayList<Accessor>();
+
         List<Field> fields = ReflectionUtils.getAllFields(aClass);
         for (Field field : fields) {
             if (field.isAnnotationPresent(aAnnotation)) {