Skip to content

Commit 5ced797

Browse files
blafonddreab8
authored andcommitted
HHH-15067: Set add() method as public to allow non-nullable associations in hibe…
…rnate-reactive
1 parent 0f6295e commit 5ced797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/engine/internal/NonNullableTransientDependencies.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public final class NonNullableTransientDependencies {
2424
// for the map value.
2525
private Map<Object,Set<String>> propertyPathsByTransientEntity; // lazily initialized
2626

27-
void add(String propertyName, Object transientEntity) {
27+
public void add(String propertyName, Object transientEntity) {
2828
if ( propertyPathsByTransientEntity == null ) {
2929
propertyPathsByTransientEntity = new IdentityHashMap<>();
3030
}

0 commit comments

Comments
 (0)