scolebourne 2003/10/10 14:07:48
Modified: collections/src/test/org/apache/commons/collections
AbstractTestCollection.java
Log:
Code tidy
Revision Changes Path
1.4 +5 -7
jakarta-commons/collections/src/test/org/apache/commons/collections/AbstractTestCollection.java
Index: AbstractTestCollection.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/test/org/apache/commons/collections/AbstractTestCollection.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- AbstractTestCollection.java 5 Oct 2003 23:10:31 -0000 1.3
+++ AbstractTestCollection.java 10 Oct 2003 21:07:48 -0000 1.4
@@ -948,14 +948,12 @@
!collection.removeAll(Collections.EMPTY_SET));
verify();
- assertTrue("Full collection removeAll should return false for " +
- "other elements",
+ assertTrue("Full collection removeAll should return false for other
elements",
!collection.removeAll(Arrays.asList(getOtherElements())));
verify();
- assertTrue("Full collection removeAll should return true for " +
- "full elements",
- collection.removeAll(new HashSet(collection)));
+ assertTrue("Full collection removeAll should return true for full
elements",
+ collection.removeAll(new HashSet(collection)));
confirmed.removeAll(new HashSet(confirmed));
verify();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]