Skip to content

Commit

Permalink
Redeclare List as ArrayList, re #3
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Oct 2, 2023
1 parent 2c91db8 commit f981750
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected StringBuffer renderOptions(final StringBuffer sb, final int width, fin
// -a is opt and --aaa is long opt; in parallel look for
// the longest opt string this list will be then used to
// sort options ascending
final List<StringBuffer> prefixList = new ArrayList<>();
final ArrayList<StringBuffer> prefixList = new ArrayList<>();
final List<Option> optList = options.helpOptions();
optList.sort(getOptionComparator());

Expand Down

0 comments on commit f981750

Please sign in to comment.