Parcourir la source

Merge "ObjectIdSubclassMap: Correct Iterator to throw NoSuchElementException"

tags/v0.8.1
Matthias Sohn il y a 14 ans
Parent
révision
9605fcc0fb

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdSubclassMap.java Voir le fichier

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.
return v; return v;
} }
} }
throw new IllegalStateException();
throw new NoSuchElementException();
} }


public void remove() { public void remove() {

Chargement…
Annuler
Enregistrer