Skip to content

Commit

Permalink
Merge pull request #1 from mtexplorative/master
Browse files Browse the repository at this point in the history
Bug Fix: Last line of Note / comment was lost
  • Loading branch information
nilswende authored Nov 9, 2023
2 parents 30deca9 + d255d16 commit 4f1ee52
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/wn/dbml/compiler/lexer/LexerImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ private Token nextMultiLineString(final String quote, final TokenType tokenType)
sb.append((char) c);
}
if (lookahead.equals(quote)) {
multiLineSb.appendLine(sb.toString());
skipChars(quote.length());
break;
}
Expand Down

0 comments on commit 4f1ee52

Please sign in to comment.