You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by to...@apache.org on 2008/01/31 06:54:52 UTC

svn commit: r617011 - /harmony/enhanced/classlib/trunk/modules/text/src/test/java/org/apache/harmony/text/tests/java/text/SimpleDateFormatTest.java

Author: tonywu
Date: Wed Jan 30 21:54:51 2008
New Revision: 617011

URL: http://svn.apache.org/viewvc?rev=617011&view=rev
Log:
Remove the unnecessary system print

Modified:
    harmony/enhanced/classlib/trunk/modules/text/src/test/java/org/apache/harmony/text/tests/java/text/SimpleDateFormatTest.java

Modified: harmony/enhanced/classlib/trunk/modules/text/src/test/java/org/apache/harmony/text/tests/java/text/SimpleDateFormatTest.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/text/src/test/java/org/apache/harmony/text/tests/java/text/SimpleDateFormatTest.java?rev=617011&r1=617010&r2=617011&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/text/src/test/java/org/apache/harmony/text/tests/java/text/SimpleDateFormatTest.java (original)
+++ harmony/enhanced/classlib/trunk/modules/text/src/test/java/org/apache/harmony/text/tests/java/text/SimpleDateFormatTest.java Wed Jan 30 21:54:51 2008
@@ -881,7 +881,6 @@
                 0xA0, 0x2007, 0x202F };
 
         for (int i = 0; i < not_allowed_chars.length; i++) {
-System.out.println(i);
             ParsePosition pp = new ParsePosition(0);
             Date d = df.parse(not_allowed_chars[i] + "9:07", pp);
             assertNull(d);
@@ -892,7 +891,6 @@
 
             pp = new ParsePosition(0);
             d = df.parse("09:07:" + not_allowed_chars[i] + "6", pp);
-            System.out.println(d);
             assertNull(d);
         }
     }