Details
Description
HelpFormatter is using an inner class Comparator implementation to sort Option
objects, however it seems to be a bit confused about what types of object it is
sorting. The inner class is called StringBufferComparator, although it's
actually sorting Option objects. Further, it simply compares the object's
toString() values rather than using the getKey() method which would perform the
sort that the comments seem to indicate is desired. The sort that is actually
performed doesn't appear to modify the ordering of the list at all.