Commit b121dcb5 by Jeroen Frijters Committed by Michael Koch

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
parent 44b20223
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> 2004-03-19 Mark Wielaard <mark@klomp.org>
* java/io/BufferedReader.java: Use &lt;=, not &lt;&eq; to make gjdoc * java/io/BufferedReader.java: Use &lt;=, not &lt;&eq; to make gjdoc
......
...@@ -684,7 +684,7 @@ public class ThreadGroup ...@@ -684,7 +684,7 @@ public class ThreadGroup
{ {
if (groups == null) if (groups == null)
return; return;
System.out.print(indentation + this); System.out.println(indentation + this);
indentation += " "; indentation += " ";
int i = threads.size(); int i = threads.size();
while (--i >= 0) while (--i >= 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment