changeset 585:d8b97eea56e3

Remove left-in System.out
author Adam Domurad <adomurad@redhat.com>
date Tue, 11 Dec 2012 14:11:39 -0500
parents 0187d8df56b4
children 1fe2a4f7981f
files ChangeLog plugin/icedteanp/java/sun/applet/PluginParameterParser.java
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Dec 10 17:45:36 2012 -0500
+++ b/ChangeLog	Tue Dec 11 14:11:39 2012 -0500
@@ -1,3 +1,8 @@
+2012-12-11  Adam Domurad  <adomurad@redhat.com>
+
+	* plugin/icedteanp/java/sun/applet/PluginParameterParser.java: 
+	Remove left-in System.out
+
 2012-12-10  Saad Mohammad  <smohammad@redhat.com>
 
 	Add unit tests for PR1189.
--- a/plugin/icedteanp/java/sun/applet/PluginParameterParser.java	Mon Dec 10 17:45:36 2012 -0500
+++ b/plugin/icedteanp/java/sun/applet/PluginParameterParser.java	Tue Dec 11 14:11:39 2012 -0500
@@ -46,7 +46,6 @@
     static Map<String, String> parseEscapedKeyValuePairs(String keyvalString) {
         // Split on ';', ensuring empty strings at end are kept
         String[] strs = keyvalString.split(KEY_VALUE_DELIMITER, -1 /* Keep empty strings */);
-        System.out.println("Split array: " + Arrays.toString(strs));
 
         Map<String, String> attributes = new HashMap<String, String>();