Skip to content

Commit 2eaa130

Browse files
committed
Add missing generic parameter to ReactiveCompoundNaturalIdLoader
1 parent 83ddb49 commit 2eaa130

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/loader/ast/internal/ReactiveCompoundNaturalIdLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import org.hibernate.reactive.loader.ast.spi.ReactiveNaturalIdLoader;
1919
import org.hibernate.sql.ast.tree.from.TableGroup;
2020

21-
public class ReactiveCompoundNaturalIdLoader<T> extends CompoundNaturalIdLoader implements ReactiveNaturalIdLoader {
21+
public class ReactiveCompoundNaturalIdLoader<T> extends CompoundNaturalIdLoader<CompletionStage<T>> implements ReactiveNaturalIdLoader<T> {
2222

2323
private final ReactiveNaturalIdLoaderDelegate<T> delegate;
2424

0 commit comments

Comments
 (0)