|
|
|
|
|
by nknight
5164 days ago
|
|
private void RangeCheck(int index) {
if (index >= size)
throw new IndexOutOfBoundsException(
"Index: "+index+", Size: "+size);
}
If this were the basis of Oracle's copyright claim, any judge in the country would have tossed the case on summary judgement. |
|