(VecPaired<V, P> o1, VecPaired<V, P> o2)
| 325 | Comparator<VecPaired<V, P>> comp = new Comparator<VecPaired<V, P>>() { |
| 326 | |
| 327 | @Override |
| 328 | public int compare(VecPaired<V, P> o1, VecPaired<V, P> o2) |
| 329 | { |
| 330 | return o1.getPair().compareTo(o2.getPair()); |
| 331 | } |
| 332 | }; |
| 333 | return comp; |
| 334 | }; |