From cc4303d073b2a610681ede35c974a2b8fbff9057 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Fri, 18 Sep 2009 22:51:38 +0200 Subject: [PATCH] Removed a System.out.println --- .../java/com/twelvemonkeys/lang/StringUtilTestCase.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) mode change 100755 => 100644 twelvemonkeys-core/src/test/java/com/twelvemonkeys/lang/StringUtilTestCase.java diff --git a/twelvemonkeys-core/src/test/java/com/twelvemonkeys/lang/StringUtilTestCase.java b/twelvemonkeys-core/src/test/java/com/twelvemonkeys/lang/StringUtilTestCase.java old mode 100755 new mode 100644 index 0ae6cf32..c889f559 --- a/twelvemonkeys-core/src/test/java/com/twelvemonkeys/lang/StringUtilTestCase.java +++ b/twelvemonkeys-core/src/test/java/com/twelvemonkeys/lang/StringUtilTestCase.java @@ -15,9 +15,6 @@ import java.sql.Timestamp; /** * StringUtilTestCase * - * - * - * * @author Harald Kuhr * @author last modified by $Author: haku $ * @version $Id: //depot/branches/personal/haraldk/twelvemonkeys/release-2/twelvemonkeys-core/src/test/java/com/twelvemonkeys/lang/StringUtilTestCase.java#1 $ @@ -25,7 +22,7 @@ import java.sql.Timestamp; */ public class StringUtilTestCase extends TestCase { final static Object TEST_OBJECT = new Object(); - final static Integer TEST_INTEGER = new Integer(42); + final static Integer TEST_INTEGER = 42; final static String TEST_STRING = "TheQuickBrownFox"; // No WS! final static String TEST_SUB_STRING = TEST_STRING.substring(2, 5); final static String TEST_DELIM_STRING = "one,two, three\n four\tfive six"; @@ -702,8 +699,8 @@ public class StringUtilTestCase extends TestCase { assertEquals(Color.yellow, StringUtil.toColor("yellow")); assertEquals(Color.yellow, StringUtil.toColor("YELLOW")); - System.out.println(StringUtil.deepToString(Color.yellow)); - System.out.println(StringUtil.deepToString(Color.pink, true, -1)); +// System.out.println(StringUtil.deepToString(Color.yellow)); +// System.out.println(StringUtil.deepToString(Color.pink, true, -1)); // Test HTML/CSS style color for (int i = 0; i < 256; i++) {