Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Commit

Permalink
Fixed annotations in inputRange(int, int)
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Oct 27, 2015
1 parent 6c7b8d0 commit 6d2c461
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ public Builder inputMaxLengthRes(@IntRange(from = 1, to = Integer.MAX_VALUE) int
}

public Builder inputRange(@IntRange(from = 0, to = Integer.MAX_VALUE) int minLength,
@IntRange(from = 1, to = Integer.MAX_VALUE) int maxLength) {
@IntRange(from = -1, to = Integer.MAX_VALUE) int maxLength) {
return inputRange(minLength, maxLength, 0);
}

Expand Down

0 comments on commit 6d2c461

Please sign in to comment.