(String type, String order, List<Item> items)
| 10 | private final String order; |
| 11 | |
| 12 | public static void sort(String type, String order, List<Item> items) { |
| 13 | Collections.sort(items, new Sorter(type, order)); |
| 14 | } |
| 15 | |
| 16 | public Sorter(String type, String order) { |
| 17 | this.type = type; |
no outgoing calls
no test coverage detected