[Aceunit-commit] SF.net SVN: aceunit:[579] trunk/src/java/src/prj/net/sf/aceunit/Fixture. java
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2011-03-26 22:27:08
|
Revision: 579 http://aceunit.svn.sourceforge.net/aceunit/?rev=579&view=rev Author: christianhujer Date: 2011-03-26 22:27:01 +0000 (Sat, 26 Mar 2011) Log Message: ----------- Remove TODO. I will not care about the last comma for stupid standards-violating compilers until someone really requires it. Modified Paths: -------------- trunk/src/java/src/prj/net/sf/aceunit/Fixture.java Modified: trunk/src/java/src/prj/net/sf/aceunit/Fixture.java =================================================================== --- trunk/src/java/src/prj/net/sf/aceunit/Fixture.java 2011-03-26 22:14:31 UTC (rev 578) +++ trunk/src/java/src/prj/net/sf/aceunit/Fixture.java 2011-03-26 22:27:01 UTC (rev 579) @@ -174,7 +174,7 @@ out.format("/** The loops of this fixture. */%n"); out.format("static const aceunit_loop_t loops[] = {%n"); for (final String method : testMethods) { - out.format(" %s,%n", loopMethods.getArg(method)); // TODO Care about last comma? + out.format(" %s,%n", loopMethods.getArg(method)); } out.format("};%n"); out.format("#endif%n"); @@ -183,7 +183,7 @@ out.format("/** The groups of this fixture. */%n"); out.format("static const AceGroupId_t groups[] = {%n"); for (final String method : testMethods) { - out.format(" %s,%n", groupMethods.getArg(method)); // TODO Care about last comma? + out.format(" %s,%n", groupMethods.getArg(method)); } out.format("};%n"); out.format("#endif%n"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |