Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for BrokenAbstractSequentialIterator (0.1 seconds)

  1. guava-tests/test/com/google/common/collect/AbstractSequentialIteratorTest.java

        }
    
        @Override
        protected T computeNext(T previous) {
          throw new AssertionFailedError();
        }
      }
    
      private static class BrokenAbstractSequentialIterator extends AbstractSequentialIterator<Object> {
    
        BrokenAbstractSequentialIterator() {
          super("UNUSED");
        }
    
        @Override
        protected Object computeNext(Object previous) {
          throw new SomeUncheckedException();
        }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 4.7K bytes
    - Click Count (0)
Back to Top