add a space

This commit is contained in:
Gavin 2023-04-06 23:50:22 +02:00 committed by Gavin King
parent 969eb9fb5a
commit a6f355a78c

View File

@ -52,7 +52,7 @@ private static String escape(String code) {
* @param stringCode the ANSI escape code to use for highlighting SQL strings
*/
public HighlightingFormatter(String keywordCode, String stringCode, String quotedCode) {
keywordEscape =escape( keywordCode );
keywordEscape = escape( keywordCode );
stringEscape = escape( stringCode );
quotedEscape = escape( quotedCode );
normalEscape = escape( "0" );