HHH-12445 Remove unused constants related to "null"/"not-null" discriminator values

This commit is contained in:
Yoann Rodière 2021-05-03 18:13:16 +02:00
parent 662f86abe1
commit 72f4a2f610
2 changed files with 0 additions and 4 deletions

View File

@ -62,8 +62,6 @@ public class JoinedSubclassEntityPersister extends AbstractEntityPersister {
private static final String IMPLICIT_DISCRIMINATOR_ALIAS = "clazz_";
private static final Object NULL_DISCRIMINATOR = new MarkerObject("<null discriminator>");
private static final Object NOT_NULL_DISCRIMINATOR = new MarkerObject("<not null discriminator>");
private static final String NULL_STRING = "null";
private static final String NOT_NULL_STRING = "not null";
// the class hierarchy structure
private final int tableSpan;

View File

@ -114,8 +114,6 @@ public class SingleTableEntityPersister extends AbstractEntityPersister {
private static final Object NULL_DISCRIMINATOR = new MarkerObject( "<null discriminator>" );
private static final Object NOT_NULL_DISCRIMINATOR = new MarkerObject( "<not null discriminator>" );
private static final String NULL_STRING = "null";
private static final String NOT_NULL_STRING = "not null";
//INITIALIZATION: