Skip to content

Commit 6b25906

Browse files
committed
[#1717] Remove warning: Raw parameter
1 parent 1b326b9 commit 6b25906

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/collection/impl/ReactiveBasicCollectionPersister.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public CompletionStage<Void> reactiveRemove(Object id, SharedSessionContractImpl
157157
* @see org.hibernate.persister.collection.BasicCollectionPersister#recreate(PersistentCollection, Object, SharedSessionContractImplementor)
158158
*/
159159
@Override
160-
public CompletionStage<Void> reactiveRecreate(PersistentCollection collection, Object id, SharedSessionContractImplementor session) {
160+
public CompletionStage<Void> reactiveRecreate(PersistentCollection<?> collection, Object id, SharedSessionContractImplementor session) {
161161
return getCreateEntryCoordinator().reactiveInsertRows( collection, id, collection::includeInRecreate, session );
162162
}
163163

0 commit comments

Comments
 (0)