Remove unused constructor.

This commit is contained in:
Karsten Loesing 2019-11-20 17:01:53 +01:00
parent 3554a91d81
commit a8e0cb7ab7

View File

@ -19,10 +19,6 @@ public class BlockingIteratorImpl<T> implements Iterator<T>, Iterable<T> {
/* Maximum number of elements in queue. */
private int maxQueueSize = 100;
/* Restrict object construction to the impl package. */
protected BlockingIteratorImpl() {
}
/* Create instance with maximum queue size. */
protected BlockingIteratorImpl(Integer maxQueueSize) {
if (null != maxQueueSize) {