HHH-14142 Make constructor of StatelessSessionImpl public
needed by Hibernate Reactive, see: https://github.com/hibernate/hibernate-reactive/pull/310 https://hibernate.atlassian.net/browse/HHH-14142
This commit is contained in:
parent
6392de46d0
commit
96bc705d9a
|
@ -72,7 +72,7 @@ public class StatelessSessionImpl extends AbstractSharedSessionContract implemen
|
|||
private final boolean connectionProvided;
|
||||
private final boolean allowBytecodeProxy;
|
||||
|
||||
StatelessSessionImpl(SessionFactoryImpl factory, SessionCreationOptions options) {
|
||||
public StatelessSessionImpl(SessionFactoryImpl factory, SessionCreationOptions options) {
|
||||
super( factory, options );
|
||||
connectionProvided = options.getConnection() != null;
|
||||
allowBytecodeProxy = getFactory().getSessionFactoryOptions().isEnhancementAsProxyEnabled();
|
||||
|
|
Loading…
Reference in New Issue