This commit is contained in:
Gary Gregory 2019-11-01 11:45:06 -04:00
commit b398b82c7f

View File

@ -267,7 +267,7 @@ public class CircularFifoQueue<E> extends AbstractCollection<E>
final int sz = size();
if (index < 0 || index >= sz) {
throw new NoSuchElementException(
String.format("The specified index (%1$d) is outside the available range [0, %2$d)",
String.format("The specified index %1$d is outside the available range [0, %2$d)",
Integer.valueOf(index), Integer.valueOf(sz)));
}