* libjava.lang/pr109.java: Added `println' at end.

From-SVN: r32627
This commit is contained in:
Tom Tromey 2000-03-19 04:35:24 +00:00 committed by Tom Tromey
parent 942248b868
commit 6264c3956f
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-03-18 Tom Tromey <tromey@cygnus.com>
* libjava.lang/pr109.java: Added `println' at end.
2000-03-15 Tom Tromey <tromey@cygnus.com>
* libjava.compile/pr176.java: New file, for PR gcj/176.

View File

@ -21,5 +21,9 @@ public class pr109
break;
System.out.print (i);
}
// We print a newline here because otherwise the DejaGNU log
// file is screwed up.
System.out.println ();
}
}