Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / test / java / org / wamblee / collections / CollectionFilterTest.java
index 6e6259fa79d9787b559635ed1b0c8bf069b6e9eb..2c583227cd19776e44f05c9c4da1869af0056fed 100644 (file)
@@ -25,18 +25,17 @@ import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.List;
 
-
 public class CollectionFilterTest extends TestCase {
     public void testFilter() {
         List<String> list = Arrays.asList(new String[] { "x", "y", "z", "y" });
         List<String> result = new ArrayList<String>();
-        CollectionFilter.filter(list, result,
-            new Condition<String>() {
-                @Override
-                public boolean matches(String aObject) {
-                    return aObject.equals("y");
-                }
-            });
-        AssertionUtils.assertEquals(new String[] { "y", "y" }, result.toArray());
+        CollectionFilter.filter(list, result, new Condition<String>() {
+            @Override
+            public boolean matches(String aObject) {
+                return aObject.equals("y");
+            }
+        });
+        AssertionUtils
+            .assertEquals(new String[] { "y", "y" }, result.toArray());
     }
 }