Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkForConcurrentModification (0.09 sec)

  1. android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

        @ParametricNullness
        abstract T result(int entryIndex);
    
        private void checkForConcurrentModification() {
          if (backingMap.modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
        }
    
        @Override
        public boolean hasNext() {
          checkForConcurrentModification();
          return entryIndex >= 0;
        }
    
        @Override
        @ParametricNullness
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 05 23:15:58 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top