@see java.util.List#subList(int, int)
(int fromIndex, int toIndex)
| 3004 | * @see java.util.List#subList(int, int) |
| 3005 | */ |
| 3006 | public List<E> subList(int fromIndex, int toIndex) { |
| 3007 | return checkedList(l.subList(fromIndex, toIndex), type); |
| 3008 | } |
| 3009 | |
| 3010 | /** |
| 3011 | * @see java.util.List#equals(Object) |
nothing calls this directly
no test coverage detected