This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Patch: java.lang.ThreadGroup


Hi list,


I just commited the attached patch to merge java.lang.ThreadGroup with 
classpath again.


Michael


2004-03-19  Jeroen Frijters  <jeroen@frijters.net>

	* java/lang/ThreadGroup.java (list): Changed print to println.

Index: java/lang/ThreadGroup.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/ThreadGroup.java,v
retrieving revision 1.17
diff -u -b -B -r1.17 ThreadGroup.java
--- java/lang/ThreadGroup.java	26 Aug 2003 23:14:07 -0000	1.17
+++ java/lang/ThreadGroup.java	19 Mar 2004 22:55:52 -0000
@@ -684,7 +684,7 @@
   {
     if (groups == null)
       return;
-    System.out.print(indentation + this);
+    System.out.println(indentation + this);
     indentation += "    ";
     int i = threads.size();
     while (--i >= 0)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]