mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
HHH-10715 A couple of missing final keywords
This commit is contained in:
parent
b13a116a6e
commit
96209e0ff6
@ -101,8 +101,8 @@ public static enum Operation {
|
||||
DDL("ddl", HIBERNATE_GROUP_PREFIX + "ddl");
|
||||
|
||||
|
||||
private String exposedName;
|
||||
private String groupPropertyName;
|
||||
private final String exposedName;
|
||||
private final String groupPropertyName;
|
||||
|
||||
Operation(String exposedName, String groupProperty) {
|
||||
this.exposedName = exposedName;
|
||||
|
@ -49,7 +49,7 @@ public class LiteralProcessor implements HqlSqlTokenTypes {
|
||||
/**
|
||||
* 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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user