Skip to content
Prev Previous commit
Next Next commit
Add missing separator
  • Loading branch information
ibauersachs committed Dec 25, 2021
commit bd7021b3730fc6017ce826b7b48b3283b206aa38
2 changes: 1 addition & 1 deletion src/main/java/org/xbill/DNS/Mnemonic.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void setNumericAllowed(boolean numeric) {
/** Checks that a numeric value is within the range [0..max] */
public void check(int val) {
if (val < 0 || val > max) {
throw new IllegalArgumentException(description + " " + val + "is out of range");
throw new IllegalArgumentException(description + " " + val + " is out of range");
}
}

Expand Down