(int fromIndex, int toIndex)
| 333 | } |
| 334 | |
| 335 | @Override |
| 336 | public List<Byte> subList(int fromIndex, int toIndex) { |
| 337 | int size = size(); |
| 338 | checkPositionIndexes(fromIndex, toIndex, size); |
| 339 | if (fromIndex == toIndex) { |
| 340 | return Collections.emptyList(); |
| 341 | } |
| 342 | return new ByteArrayAsList(array, start + fromIndex, start + toIndex); |
| 343 | } |
| 344 | |
| 345 | @Override |
| 346 | public boolean equals(@Nullable Object object) { |
nothing calls this directly
no test coverage detected