We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6764161 commit a0f837eCopy full SHA for a0f837e
src/main/java/com/datasiqn/commandcore/argument/Arguments.java
@@ -55,7 +55,7 @@ public interface Arguments {
55
* Checks if {@code i} is smaller than {@code size} and at least 0
56
* @param i The number to check
57
* @param size The total size
58
- * @throws IndexOutOfBoundsException If {@code i} >= {@code size} or {@code i} < 0
+ * @throws IndexOutOfBoundsException If {@code i} {@literal >=} {@code size} or {@code i} {@literal <} 0
59
*/
60
static void checkBounds(int i, int size) {
61
if (i >= size) throw new IndexOutOfBoundsException("index (" + i + ") is greater than total size (" + size + ")");
0 commit comments