HHH-14217 Code style

This commit is contained in:
Sanne Grinovero 2020-09-30 16:51:27 +01:00
parent cf995a1571
commit 916513a7eb
2 changed files with 21 additions and 21 deletions

View File

@ -15,7 +15,7 @@ import java.util.Set;
* *
* @author Steve Ebersole * @author Steve Ebersole
*/ */
public class AnsiSqlKeywords { public final class AnsiSqlKeywords {
/** /**
* Singleton access * Singleton access
*/ */
@ -23,7 +23,7 @@ public class AnsiSqlKeywords {
private final Set<String> keywordsSql2003; private final Set<String> keywordsSql2003;
public AnsiSqlKeywords() { private AnsiSqlKeywords() {
final Set<String> keywordsSql2003 = new HashSet<String>(); final Set<String> keywordsSql2003 = new HashSet<String>();
keywordsSql2003.add( "ADD" ); keywordsSql2003.add( "ADD" );
keywordsSql2003.add( "ALL" ); keywordsSql2003.add( "ALL" );
@ -281,5 +281,4 @@ public class AnsiSqlKeywords {
return keywordsSql2003; return keywordsSql2003;
} }
} }

View File

@ -102,4 +102,5 @@ public class HighlightingFormatter implements Formatter {
} }
return result.toString(); return result.toString();
} }
} }