Skip to content

Commit

Permalink
Make StatefulPersistenceContext protected
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Jan 24, 2025
1 parent 8d2c875 commit 541fc80
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
* @author Steve Ebersole
* @author Sanne Grinovero
*/
class StatefulPersistenceContext implements PersistenceContext {
public class StatefulPersistenceContext implements PersistenceContext {
private static final CoreMessageLogger LOG = Logger.getMessageLogger(
MethodHandles.lookup(),
CoreMessageLogger.class,
Expand Down Expand Up @@ -173,7 +173,7 @@ the following fields are used in all circumstances, and are not worth (or not su
*
* @param session The session "owning" this context.
*/
StatefulPersistenceContext(SharedSessionContractImplementor session) {
protected StatefulPersistenceContext(SharedSessionContractImplementor session) {
this.session = session;
this.entityEntryContext = new EntityEntryContext( this );
}
Expand Down

0 comments on commit 541fc80

Please sign in to comment.