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