From: bdemsky Date: Fri, 14 Sep 2007 10:12:45 +0000 (+0000) Subject: put carriage returns in X-Git-Tag: preEdgeChange~441 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3a8a3d4b642c3911d0ad6c0683dc65f514ac939f;p=IRC.git put carriage returns in CV: ---------------------------------------------------------------------- --- diff --git a/Robust/src/Tests/remotethreadtest.java b/Robust/src/Tests/remotethreadtest.java index e9c9f2a6..40faa027 100644 --- a/Robust/src/Tests/remotethreadtest.java +++ b/Robust/src/Tests/remotethreadtest.java @@ -8,15 +8,15 @@ public class RemoteThread extends Thread { atomic { t= global new RemoteThread(); } - System.printString("Starting"); + System.printString("Starting\n"); t.start(mid); - System.printString("Finished"); + System.printString("Finished\n"); //this is ugly... while(true) ; } public int run() { - System.printString("Remote machine"); + System.printString("Remote machine\n"); } }