--- jsr166/src/test/jtreg/util/Collections/CheckedListBash.java 2009/09/01 01:24:16 1.1 +++ jsr166/src/test/jtreg/util/Collections/CheckedListBash.java 2010/09/01 07:47:27 1.2 @@ -214,10 +214,10 @@ public class CheckedListBash { int preSize = s.size(); if (!s.add(e)) - fail ("Add failed."); + fail("Add failed."); int postSize = s.size(); if (postSize-preSize != 1) - fail ("Add didn't increase size by 1."); + fail("Add didn't increase size by 1."); } }