Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / conditions / Condition.java
index 8b410f74d4086c1d115ddc321f0f05ab96de29f6..e29dd002134c99de61c8f9a60078fec433511fa2 100644 (file)
@@ -17,15 +17,16 @@ package org.wamblee.conditions;
 
 /**
  * Determines if an object matches a certain condition.
- *
+ * 
  * @author Erik Brakkee
  */
 public interface Condition<T> {
     /**
      * Determines if an object matches a condition.
-     *
-     * @param aObject object to match.
-     *
+     * 
+     * @param aObject
+     *            object to match.
+     * 
      * @return True iff the object matches.
      */
     boolean matches(T aObject);