Skip to content

Commit

Permalink
Fix a parameter name typo in AntlrSourceInformation constructor (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-m-knight-gs authored Jan 6, 2025
1 parent 3643f5e commit c0ddc60
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ public AntlrSourceInformation(int offsetLine, int offsetColumn, String sourceNam
this.addLines = addLines;
}

public AntlrSourceInformation(int offsetColumn, int offsetLine, String sourceName)
public AntlrSourceInformation(int offsetLine, int offsetColumn, String sourceName)
{
this(offsetColumn, offsetLine, sourceName, true);
this(offsetLine, offsetColumn, sourceName, true);
}

public String getSourceName()
Expand Down

0 comments on commit c0ddc60

Please sign in to comment.