Skip to content

Commit

Permalink
Rename before2 -> before if no other before is present
Browse files Browse the repository at this point in the history
  • Loading branch information
werli committed Oct 13, 2022
1 parent f75ada3 commit 946e517
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int after(int index, int size) {
*/
static final class CheckIndexConditional {
@BeforeTemplate
void before2(int index, int size) {
void before(int index, int size) {
if (index < 0 || index >= size) {
throw new IndexOutOfBoundsException();
}
Expand Down

0 comments on commit 946e517

Please sign in to comment.