Author: doogie
Date: Mon Mar  1 03:10:51 2010
New Revision: 917361

URL: http://svn.apache.org/viewvc?rev=917361&view=rev
Log:
Remove some debug prints.

Modified:
    ofbiz/trunk/framework/base/src/org/ofbiz/base/test/GenericTestCaseBase.java

Modified: 
ofbiz/trunk/framework/base/src/org/ofbiz/base/test/GenericTestCaseBase.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/test/GenericTestCaseBase.java?rev=917361&r1=917360&r2=917361&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/test/GenericTestCaseBase.java 
(original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/test/GenericTestCaseBase.java 
Mon Mar  1 03:10:51 2010
@@ -125,7 +125,6 @@
     }
 
     public static <T> void assertEquals(Collection<T> wanted, Object got) {
-        System.err.println("a");
         assertEquals(null, wanted, got);
     }
 
@@ -140,7 +139,6 @@
         // Need to check the reverse, wanted may not implement equals,
         // which is the case for HashMap.values()
         if (got.equals(wanted)) return;
-        System.err.println("b:" + wanted.getClass());
         msg = msg == null ? "" : msg + ' ';
         assertNotNull(msg + "expected a value", got);
         List<T> list = new ArrayList<T>(wanted);
@@ -269,7 +267,6 @@
         } else if (wanted instanceof Set) {
             assertEquals(msg, (Set<?>) wanted, got);
         } else if (wanted instanceof Collection) {
-            System.err.println("c");
             assertEquals(msg, (Collection<?>) wanted, got);
         } else if (wanted.getClass().isArray()) {
             if (got == null) {


Reply via email to