From: <chr...@us...> - 2009-08-14 22:58:47
|
Revision: 122 http://pojomatic.svn.sourceforge.net/pojomatic/?rev=122&view=rev Author: chriswhansen Date: 2009-08-14 22:58:29 +0000 (Fri, 14 Aug 2009) Log Message: ----------- Clear up intent to throw an exception Modified Paths: -------------- trunk/Pojomatic/src/test/java/org/pojomatic/internal/SelfPopulatingMapTest.java Modified: trunk/Pojomatic/src/test/java/org/pojomatic/internal/SelfPopulatingMapTest.java =================================================================== --- trunk/Pojomatic/src/test/java/org/pojomatic/internal/SelfPopulatingMapTest.java 2009-08-07 02:43:26 UTC (rev 121) +++ trunk/Pojomatic/src/test/java/org/pojomatic/internal/SelfPopulatingMapTest.java 2009-08-14 22:58:29 UTC (rev 122) @@ -57,7 +57,8 @@ return new String(key); } else { - throw new RuntimeException("failing on first attempt"); + //first time through, throw an exception + throw new RuntimeException("This is expected: failing on first attempt"); } } }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |