()
| 73 | |
| 74 | static final UnmodifiableListIterator<Object> EMPTY_LIST_ITERATOR = new UnmodifiableListIterator<Object>() { |
| 75 | @Override |
| 76 | public boolean hasNext() { |
| 77 | return false; |
| 78 | } |
| 79 | |
| 80 | @Override |
| 81 | public Object next() { |
no test coverage detected