Skip to content

Commit 6318160

Browse files
Minor visibility relaxation in AbstractEntityPersister for OGM
1 parent 6ac234e commit 6318160

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public abstract class AbstractEntityPersister
153153
private final int identifierColumnSpan;
154154
private final String versionColumnName;
155155
private final boolean hasFormulaProperties;
156-
private final int batchSize;
156+
protected final int batchSize;
157157
private final boolean hasSubselectLoadableCollections;
158158
protected final String rowIdName;
159159

@@ -3916,7 +3916,7 @@ private boolean isAffectedByEnabledFilters(SessionImplementor session) {
39163916
&& filterHelper.isAffectedBy( session.getLoadQueryInfluencers().getEnabledFilters() );
39173917
}
39183918

3919-
private UniqueEntityLoader getAppropriateLoader(LockOptions lockOptions, SessionImplementor session) {
3919+
protected UniqueEntityLoader getAppropriateLoader(LockOptions lockOptions, SessionImplementor session) {
39203920
if ( queryLoader != null ) {
39213921
// if the user specified a custom query loader we need to that
39223922
// regardless of any other consideration

0 commit comments

Comments
 (0)