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:
parent
44b20223ef
commit
b121dcb5a8
2 changed files with 5 additions and 1 deletions
|
@ -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 <=, not <&eq; to make gjdoc
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue