Skip to content

Commit

Permalink
HHH-15067: Set add() method as public to allow non-nullable associati…
Browse files Browse the repository at this point in the history
…ons in hibe…

…rnate-reactive
  • Loading branch information
blafond authored and DavideD committed Mar 16, 2022
1 parent beae63a commit 6a7afe8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<>();
}
Expand Down

0 comments on commit 6a7afe8

Please sign in to comment.