Sorts member information using the default comparator. @param memberInfo the member information to sort @return the sorted collection
(List<Object> memberInfo)
| 489 | * @return the sorted collection |
| 490 | */ |
| 491 | public static Collection sort(List<Object> memberInfo) { |
| 492 | return sort(memberInfo, new MemberComparator()); |
| 493 | } |
| 494 | |
| 495 | /** |
| 496 | * Sorts member information using the supplied comparator. |
no outgoing calls