HHH-15067: Set add() method as public to allow non-nullable associations in hibe…

…rnate-reactive
This commit is contained in:
blafond 2022-02-02 13:28:54 -06:00 committed by Andrea Boriero
parent 0f6295e6e1
commit 5ced797dd5
1 changed files with 1 additions and 1 deletions

View File

@ -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<>();
}