()
| 153 | // Casting to any type is safe since there are no actual elements. |
| 154 | |
| 155 | @SuppressWarnings("unchecked") |
| 156 | static <T> Iterator<T> emptyModifiableIterator() { |
| 157 | return (Iterator<T>) EMPTY_MODIFIABLE_ITERATOR; |
| 158 | } |
| 159 | |
| 160 | /** Returns an unmodifiable view of {@code iterator}. */ |
| 161 |
no outgoing calls
no test coverage detected