# HG changeset patch # User Jaroslav Tulach # Date 1224100098 -7200 # Node ID b762c8fb572e3c75fb8e42047e149315784f034a # Parent 6befc59fc53c52625df9d059dd192441b9591bf1 Too long lines diff -r 6befc59fc53c -r b762c8fb572e samples/gc/test/org/apidesign/gc/CompilerSurprisesTest.java --- a/samples/gc/test/org/apidesign/gc/CompilerSurprisesTest.java Wed Oct 15 21:39:35 2008 +0200 +++ b/samples/gc/test/org/apidesign/gc/CompilerSurprisesTest.java Wed Oct 15 21:48:18 2008 +0200 @@ -20,7 +20,8 @@ public void checkThatTheValueCanDisapper() { String retValue = factory(); retValue = null; - assertGC("Nobody holds the string value anymore. It can be GCed.", cache); + assertGC("Nobody holds the string value anymore." + + "It can be GCed.", cache); } // FINISH: compiler.surprises.intro @@ -29,7 +30,8 @@ public void obviouslyWithoutClearingTheReferenceItCannotBeGCed() { String retValue = factory(); // commented out: retValue = null; - assertNotGC("The reference is still on stack. It cannot be GCed.", cache); + assertNotGC("The reference is still on stack." + + "It cannot be GCed.", cache); } // END: compiler.surprises.error