Skip to content

Commit

Permalink
feat(#3743): remove unnecessary comment
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Dec 26, 2024
1 parent 9a11b54 commit 8bba152
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ private static String line(final ParserRuleContext ctx) {
final int number = token.getLine();
final String[] lines = token.getInputStream().toString().split("\n");
if (number > 0 && number <= lines.length) {
return lines[number - 1]; // Lines are 1-based
return lines[number - 1];
} else {
throw new IllegalArgumentException(
String.format(
Expand Down

0 comments on commit 8bba152

Please sign in to comment.