HHH-14217 Code style
This commit is contained in:
parent
cf995a1571
commit
916513a7eb
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,4 +102,5 @@ public class HighlightingFormatter implements Formatter {
|
||||||
}
|
}
|
||||||
return result.toString();
|
return result.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue