ThreadGroup.java (list): Changed print to println.

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

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

From-SVN: r79707
This commit is contained in:
Jeroen Frijters 2004-03-19 22:59:51 +00:00 committed by Michael Koch
parent 44b20223ef
commit b121dcb5a8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-03-19 Jeroen Frijters <jeroen@frijters.net>
* java/lang/ThreadGroup.java (list): Changed print to println.
2004-03-19 Mark Wielaard <mark@klomp.org>
* java/io/BufferedReader.java: Use &lt;=, not &lt;&eq; to make gjdoc

View File

@ -684,7 +684,7 @@ public class ThreadGroup
{
if (groups == null)
return;
System.out.print(indentation + this);
System.out.println(indentation + this);
indentation += " ";
int i = threads.size();
while (--i >= 0)