/hg/icedtea6: Removed printing of unnecessary messages from JTre...

ptisnovs at icedtea.classpath.org ptisnovs at icedtea.classpath.org
Thu Dec 2 09:11:07 PST 2010


changeset b45cfed4da75 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=b45cfed4da75
author: ptisnovs
date: Thu Dec 02 18:14:55 2010 +0100

	Removed printing of unnecessary messages from JTreg harness.


diffstat:

2 files changed, 5 insertions(+), 5 deletions(-)
ChangeLog                                              |    5 +++++
test/jtreg/com/sun/javatest/regtest/CompileAction.java |    5 -----

diffs (44 lines):

diff -r 6bc8c41e508f -r b45cfed4da75 ChangeLog
--- a/ChangeLog	Wed Dec 01 17:53:39 2010 +0000
+++ b/ChangeLog	Thu Dec 02 18:14:55 2010 +0100
@@ -1,3 +1,8 @@ 2010-12-01  Andrew John Hughes  <ahughes
+2010-12-02  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* test/jtreg/com/sun/javatest/regtest/CompileAction.java:
+	Removed printing of unnecessary messages from JTreg harness.
+
 2010-12-01  Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am: Apply 7002666 to both hs17
diff -r 6bc8c41e508f -r b45cfed4da75 test/jtreg/com/sun/javatest/regtest/CompileAction.java
--- a/test/jtreg/com/sun/javatest/regtest/CompileAction.java	Wed Dec 01 17:53:39 2010 +0000
+++ b/test/jtreg/com/sun/javatest/regtest/CompileAction.java	Thu Dec 02 18:14:55 2010 +0100
@@ -449,11 +449,9 @@ public class CompileAction extends Actio
                 String name = e.getKey();
                 String value = e.getValue();
                 if (name.equals("test.class.path.prefix")) {
-                    System.err.println("*** java.class.path" + System.getProperty("java.class.path"));
                     Path cp = new Path(value, System.getProperty("java.class.path"));
                     p.put("java.class.path", cp.toString());
                 } else {
-                    System.err.println("prop: " + e.getKey() + "\t" + e.getValue());
                     p.put(e.getKey(), e.getValue());
                 }
             }
@@ -591,16 +589,13 @@ public class CompileAction extends Actio
             } else {
                 resetAllSysProps = true;
             }
-            System.err.println("resetAllSysProps: " + resetAllSysProps);
             try {
                 if (sysProps != null)
                 {
                     if (resetAllSysProps) {
                         System.setProperties(newProperties(sysProps));
-                        //                    System.err.println("reset properties");
                     } else {
                         System.setProperty("java.class.path", (String) sysProps.get("java.class.path"));
-                        //                    System.err.println("no need to reset properties");
                     }
                 }
             } catch (SecurityException e) {



More information about the distro-pkg-dev mailing list