Skip to content

Commit 72f4a2f

Browse files
committed
HHH-12445 Remove unused constants related to "null"/"not-null" discriminator values
1 parent 662f86a commit 72f4a2f

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

hibernate-core/src/main/java/org/hibernate/persister/entity/JoinedSubclassEntityPersister.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ public class JoinedSubclassEntityPersister extends AbstractEntityPersister {
6262
private static final String IMPLICIT_DISCRIMINATOR_ALIAS = "clazz_";
6363
private static final Object NULL_DISCRIMINATOR = new MarkerObject("<null discriminator>");
6464
private static final Object NOT_NULL_DISCRIMINATOR = new MarkerObject("<not null discriminator>");
65-
private static final String NULL_STRING = "null";
66-
private static final String NOT_NULL_STRING = "not null";
6765

6866
// the class hierarchy structure
6967
private final int tableSpan;

hibernate-core/src/main/java/org/hibernate/persister/entity/SingleTableEntityPersister.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ public class SingleTableEntityPersister extends AbstractEntityPersister {
114114

115115
private static final Object NULL_DISCRIMINATOR = new MarkerObject( "<null discriminator>" );
116116
private static final Object NOT_NULL_DISCRIMINATOR = new MarkerObject( "<not null discriminator>" );
117-
private static final String NULL_STRING = "null";
118-
private static final String NOT_NULL_STRING = "not null";
119117

120118
//INITIALIZATION:
121119

0 commit comments

Comments
 (0)