Skip to content

Commit e73565b

Browse files
geoandDavideD
authored andcommitted
Properly pass input parameters in ReactiveJoinedSubclassEntityPersister#deleteReactive
1 parent 0121e6c commit e73565b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-reactive-core/src/main/java/org/hibernate/reactive/persister/entity/impl/ReactiveJoinedSubclassEntityPersister.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public CompletionStage<Object> insertReactive(Object[] fields, Object object, Sh
105105

106106
@Override
107107
public CompletionStage<Void> deleteReactive(Object id, Object version, Object object, SharedSessionContractImplementor session) {
108-
return ( (ReactiveDeleteCoordinator) getDeleteCoordinator() ).coordinateReactiveDelete( id, version, object, session );
108+
return ( (ReactiveDeleteCoordinator) getDeleteCoordinator() ).coordinateReactiveDelete( object, id, version, session );
109109
}
110110

111111
@Override

0 commit comments

Comments
 (0)