Skip to content

Commit 43d8978

Browse files
pass argument
1 parent d204d8c commit 43d8978

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/github/vertical_blank/sqlformatter/core

1 file changed

+1
-1
lines changed

src/main/java/com/github/vertical_blank/sqlformatter/core/Token.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public Token(TokenTypes type, String value, String regex, String whitespaceBefor
2020
}
2121

2222
public Token(TokenTypes type, String value, String regex, String whitespaceBefore) {
23-
this(type, value, regex, null, null);
23+
this(type, value, regex, whitespaceBefore, null);
2424
}
2525

2626
public Token(TokenTypes type, String value, String regex) {

0 commit comments

Comments
 (0)