1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-12 14:01:08 +01:00

Rename NumberUtil.checkIfInUInt32Range() to requireUInt32

This commit is contained in:
Florian Schmaus 2019-06-02 10:46:53 +02:00
parent 726a2de273
commit 839e347676
3 changed files with 16 additions and 4 deletions

View file

@ -333,10 +333,10 @@ public abstract class ValidateElement implements ExtensionElement {
*/
public ListRange(Long min, Long max) {
if (min != null) {
NumberUtil.checkIfInUInt32Range(min);
NumberUtil.requireUInt32(min);
}
if (max != null) {
NumberUtil.checkIfInUInt32Range(max);
NumberUtil.requireUInt32(max);
}
if (max == null && min == null) {
throw new IllegalArgumentException("Either min or max must be given");