Minor visibility relaxation in AbstractEntityPersister for OGM

This commit is contained in:
Emmanuel Bernard 2015-07-29 17:11:45 +02:00
parent 6ac234eb01
commit 6318160da8
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ public abstract class AbstractEntityPersister
private final int identifierColumnSpan;
private final String versionColumnName;
private final boolean hasFormulaProperties;
private final int batchSize;
protected final int batchSize;
private final boolean hasSubselectLoadableCollections;
protected final String rowIdName;
@ -3916,7 +3916,7 @@ public abstract class AbstractEntityPersister
&& filterHelper.isAffectedBy( session.getLoadQueryInfluencers().getEnabledFilters() );
}
private UniqueEntityLoader getAppropriateLoader(LockOptions lockOptions, SessionImplementor session) {
protected UniqueEntityLoader getAppropriateLoader(LockOptions lockOptions, SessionImplementor session) {
if ( queryLoader != null ) {
// if the user specified a custom query loader we need to that
// regardless of any other consideration