HHH-15067: Set add() method as public to allow non-nullable associations in hibe…
…rnate-reactive
This commit is contained in:
parent
0f6295e6e1
commit
5ced797dd5
|
@ -24,7 +24,7 @@ public final class NonNullableTransientDependencies {
|
|||
// for the map value.
|
||||
private Map<Object,Set<String>> propertyPathsByTransientEntity; // lazily initialized
|
||||
|
||||
void add(String propertyName, Object transientEntity) {
|
||||
public void add(String propertyName, Object transientEntity) {
|
||||
if ( propertyPathsByTransientEntity == null ) {
|
||||
propertyPathsByTransientEntity = new IdentityHashMap<>();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue