Browse Source

Merge "ObjectIdSubclassMap: Correct Iterator to throw NoSuchElementException"

stable-0.8
Matthias Sohn 15 years ago committed by Code Review
parent
commit
9605fcc0fb
  1. 3
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSubclassMap.java

3
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSubclassMap.java

@ -46,6 +46,7 @@
package org.eclipse.jgit.lib;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Fast, efficient map specifically for {@link ObjectId} subclasses.
@ -158,7 +159,7 @@ public class ObjectIdSubclassMap<V extends ObjectId> implements Iterable<V> {
return v;
}
}
throw new IllegalStateException();
throw new NoSuchElementException();
}
public void remove() {

Loading…
Cancel
Save