()
| 799 | return count < tableOfContents.classDefs.size; |
| 800 | } |
| 801 | @Override |
| 802 | public ClassDef next() { |
| 803 | if (!hasNext()) { |
| 804 | throw new NoSuchElementException(); |
| 805 | } |
| 806 | count++; |
| 807 | return in.readClassDef(); |
| 808 | } |
| 809 | @Override |
| 810 | public void remove() { |
| 811 | throw new UnsupportedOperationException(); |
nothing calls this directly
no test coverage detected