[Japi-cvs] SF.net SVN: japi:[877] libs/argparser/trunk/src
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2009-02-15 12:30:44
|
Revision: 877
http://japi.svn.sourceforge.net/japi/?rev=877&view=rev
Author: christianhujer
Date: 2009-02-15 12:30:40 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Fixed checkstyle issues. Includes change of all TODO comments into a format with date.
Modified Paths:
--------------
libs/argparser/trunk/src/prj/net/sf/japi/io/args/CommandWithHelp.java
libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/ArgParserTest.java
Modified: libs/argparser/trunk/src/prj/net/sf/japi/io/args/CommandWithHelp.java
===================================================================
--- libs/argparser/trunk/src/prj/net/sf/japi/io/args/CommandWithHelp.java 2009-02-15 11:59:43 UTC (rev 876)
+++ libs/argparser/trunk/src/prj/net/sf/japi/io/args/CommandWithHelp.java 2009-02-15 12:30:40 UTC (rev 877)
@@ -41,7 +41,7 @@
@NotNull private final ResourceBundle ownBundle = ResourceBundle.getBundle("net.sf.japi.io.args.messages");
/** Help Option. */
- // TODO:cher:Determine terminal width and perform automatic line wrapping.
+ // TODO:2009-02-15:christianhujer:Determine terminal width and perform automatic line wrapping.
@Option(type = OptionType.TERMINAL, value = {"h", "help"})
public void help() {
final Set<Method> optionMethods = ArgParser.getOptionMethods(this);
Modified: libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/ArgParserTest.java
===================================================================
--- libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/ArgParserTest.java 2009-02-15 11:59:43 UTC (rev 876)
+++ libs/argparser/trunk/src/tst/test/net/sf/japi/io/args/ArgParserTest.java 2009-02-15 12:30:40 UTC (rev 877)
@@ -382,7 +382,7 @@
Assert.assertEquals("Option value must be stored.", "fooInput", command.getInput());
Assert.assertTrue("Run must be called even with zero arguments.", command.isRunCalled());
Assert.assertEquals("Argument list for invocation without arguments must be empty.", 0, command.getArgs().size());
- // TODO:cher:-W as an option should either be disallowed or disable GNU style option parsing.
+ // TODO:2009-02-15:christianhujer:-W as an option should either be disallowed or disable GNU style option parsing.
}
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|