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