Details
Description
The method renderOptions(....) ignores Options with no shortOpt.
Possible Solution:
replace
List optList = options.helpOptions();
Collections.sort( optList, new StringBufferComparator() );
with
Collection optList = options.getOptions();