* 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

@ -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 ();
}
}