Dass341 Javxsubcom021645 Min Fixed — Repack
// after (explicitly handle boundary, use named constant) final long MIN_VALUE = Config.getMinValue(); if (value < MIN_VALUE) throw new IllegalArgumentException("value < " + MIN_VALUE + ": " + value);
// before (possible off-by-one) if (value < MIN_VALUE) throw new IllegalArgumentException("too small"); dass341 javxsubcom021645 min fixed
If you want, tell me where you found this string (filename, log line, commit message, device label) and I’ll give a targeted analysis and next steps. // after (explicitly handle boundary, use named constant)