Merge pull request #3450 from holmebin/test-branch

Test branch
This commit is contained in:
Golden Looly
2023-12-29 00:25:31 +08:00
committed by GitHub

View File

@@ -223,7 +223,7 @@ public class RandomUtil {
min++;
}
if (includeMax) {
max--;
max++;
}
return getRandom().nextInt(min, max);
}
@@ -296,7 +296,7 @@ public class RandomUtil {
min++;
}
if (includeMax) {
max--;
max++;
}
return getRandom().nextLong(min, max);
}