Fix comment typos

This commit is contained in:
aherbert 2020-06-18 09:25:25 +01:00
parent 8fcefb4f98
commit 46acdde8bd
1 changed files with 2 additions and 2 deletions

View File

@ -5190,7 +5190,7 @@ static Object removeAll(final Object array, final BitSet indices) {
final int srcLength = getLength(array);
// No need to check maxIndex here, because method only currently called from removeElements()
// which guarantee to generate on;y valid bit entries.
// which guarantee to generate only valid bit entries.
// final int maxIndex = indices.length();
// if (maxIndex > srcLength) {
// throw new IndexOutOfBoundsException("Index: " + (maxIndex-1) + ", Length: " + srcLength);
@ -5258,7 +5258,7 @@ static Object removeAll(final Object array, final int... indices) {
final int cp = end - index - 1;
dest -= cp;
System.arraycopy(array, index + 1, result, dest, cp);
// Afer this copy, we still have room for dest items.
// After this copy, we still have room for dest items.
}
end = index;
}