(int fromIndex, int toIndex)
| 543 | } |
| 544 | |
| 545 | @Override |
| 546 | public List<Character> subList(int fromIndex, int toIndex) { |
| 547 | int size = size(); |
| 548 | checkPositionIndexes(fromIndex, toIndex, size); |
| 549 | if (fromIndex == toIndex) { |
| 550 | return Collections.emptyList(); |
| 551 | } |
| 552 | return new CharArrayAsList(array, start + fromIndex, start + toIndex); |
| 553 | } |
| 554 | |
| 555 | @Override |
| 556 | public boolean equals(@Nullable Object object) { |
nothing calls this directly
no test coverage detected