Skip to content

Commit

Permalink
Merge pull request #2097 from MarcMil/dotnet
Browse files Browse the repository at this point in the history
Search for the lexer.dat in the correct path
  • Loading branch information
StevenArzt authored Sep 6, 2024
2 parents 014d2fe + 17cc96a commit 86cddfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2221,7 +2221,7 @@ public int id()
{
DataInputStream s = new DataInputStream(
new BufferedInputStream(
Lexer.class.getResourceAsStream("lexer.dat")));
Lexer.class.getResourceAsStream("/lexer.dat")));

// read gotoTable
int length = s.readInt();
Expand Down

0 comments on commit 86cddfa

Please sign in to comment.