()
| 218 | |
| 219 | //////////// List stuff ///////////////// |
| 220 | private List reify(){ |
| 221 | return Collections.unmodifiableList(new ArrayList(this)); |
| 222 | } |
| 223 | |
| 224 | public List subList(int fromIndex, int toIndex){ |
| 225 | return reify().subList(fromIndex, toIndex); |
no outgoing calls
no test coverage detected