Skip to content

Commit

Permalink
HHH-10715 A couple of missing final keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed Oct 25, 2020
1 parent b13a116 commit 96209e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -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;
Expand Down
Expand Up @@ -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;

Expand Down

0 comments on commit 96209e0

Please sign in to comment.