sdk-java
sdk-java copied to clipboard
ScheduleRange to check end
public ScheduleRange(int start, int end, int step) {
Preconditions.checkState(start >= 0 && step >= 0 && step >= 0);
Why do we need to check step twice?
Yes that is a typo, feel free to open a PR to fix if you are inclined