sdk-java icon indicating copy to clipboard operation
sdk-java copied to clipboard

ScheduleRange to check end

Open eye-dee opened this issue 2 months ago • 1 comments

  public ScheduleRange(int start, int end, int step) {
    Preconditions.checkState(start >= 0 && step >= 0 && step >= 0);

Why do we need to check step twice?

eye-dee avatar Nov 18 '25 09:11 eye-dee

Yes that is a typo, feel free to open a PR to fix if you are inclined

Quinn-With-Two-Ns avatar Nov 25 '25 02:11 Quinn-With-Two-Ns