Skip to content

Commit f10ebe7

Browse files
committed
HHH-15067: Set add() method as public to allow non-nullable associations in hibe…
…rnate-reactive
1 parent f939240 commit f10ebe7

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)