public class CliError
{
public static void main(String[] args)
{
Options options = new Options();
HelpFormatter formatter = new HelpFormatter();
String footer = System.getProperty("line.separator")+"Hello world.";
formatter.printHelp(80, "foobar", "", options, footer, true);
}
}
The bug also applied to the header text but would have affected other strings
starting with line separators,
Rob