--- jsr166/src/test/jtreg/util/Collections/CheckedListBash.java 2015/09/09 21:47:59 1.6 +++ jsr166/src/test/jtreg/util/Collections/CheckedListBash.java 2015/10/11 00:54:27 1.7 @@ -215,10 +215,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."); } }