HHH-10715 A couple of missing final keywords

This commit is contained in:
Sanne Grinovero 2020-10-10 21:25:55 +01:00
parent 9a4b8e098f
commit 8dda0616f5
2 changed files with 3 additions and 3 deletions

View File

@ -101,8 +101,8 @@ public class GroupsPerOperation {
DDL("ddl", HIBERNATE_GROUP_PREFIX + "ddl"); DDL("ddl", HIBERNATE_GROUP_PREFIX + "ddl");
private String exposedName; private final String exposedName;
private String groupPropertyName; private final String groupPropertyName;
Operation(String exposedName, String groupProperty) { Operation(String exposedName, String groupProperty) {
this.exposedName = exposedName; this.exposedName = exposedName;

View File

@ -49,7 +49,7 @@ public class LiteralProcessor implements HqlSqlTokenTypes {
/** /**
* In what format should Float and Double literal values be sent to the database? * In what format should Float and Double literal values be sent to the database?
*/ */
public static DecimalLiteralFormat DECIMAL_LITERAL_FORMAT = DecimalLiteralFormat.EXACT; public final static DecimalLiteralFormat DECIMAL_LITERAL_FORMAT = DecimalLiteralFormat.EXACT;
private HqlSqlWalker walker; private HqlSqlWalker walker;