Rename CachedIteratorAbstractCollection.java to CachedIteratorCollection.java

This commit is contained in:
slumlord
2018-08-06 12:05:51 +00:00
parent 4aff615687
commit da5c922c40

View File

@ -38,10 +38,10 @@ import java.util.NoSuchElementException;
import net.i2p.I2PAppContext; import net.i2p.I2PAppContext;
import net.i2p.util.Log; import net.i2p.util.Log;
public class CachedIteratorAbstractCollection<E> extends AbstractCollection<E> { public class CachedIteratorCollection<E> extends AbstractCollection<E> {
// FOR DEBUGGING & LOGGING PURPOSES // FOR DEBUGGING & LOGGING PURPOSES
Log log = I2PAppContext.getGlobalContext().logManager().getLog(CachedIteratorAbstractCollection.class); Log log = I2PAppContext.getGlobalContext().logManager().getLog(CachedIteratorCollection.class);
// Cached Iterator object // Cached Iterator object
private final CachedIterator iterator = new CachedIterator(); private final CachedIterator iterator = new CachedIterator();
@ -76,7 +76,7 @@ public class CachedIteratorAbstractCollection<E> extends AbstractCollection<E> {
/** /**
* Default constructor * Default constructor
*/ */
public CachedIteratorAbstractCollection() { public CachedIteratorCollection() {
} }
/** /**