Sorts the matches by their start and end positions.
()
| 56 | * Sorts the matches by their start and end positions. |
| 57 | */ |
| 58 | public void sort() { |
| 59 | Arrays.sort(list, 0, size, null); |
| 60 | } |
| 61 | |
| 62 | @Override |
| 63 | protected FTStringMatch[] newArray(final int s) { |