Skip to content

Commit 41a86a5

Browse files
committed
[hibernate#1906] Remove ReactiveAbstractSelectingDelegate
It doesn't seem to have any purpose at the moment
1 parent 6fd6cf2 commit 41a86a5

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/insert/ReactiveAbstractSelectingDelegate.java

Lines changed: 0 additions & 11 deletions
This file was deleted.

hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/insert/ReactiveBasicSelectingDelegate.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.hibernate.persister.entity.EntityPersister;
2020
import org.hibernate.reactive.adaptor.impl.PrepareStatementDetailsAdaptor;
2121
import org.hibernate.reactive.adaptor.impl.PreparedStatementAdaptor;
22+
import org.hibernate.reactive.generator.values.ReactiveGeneratedValuesMutationDelegate;
2223
import org.hibernate.reactive.generator.values.internal.ReactiveGeneratedValuesHelper;
2324
import org.hibernate.reactive.logging.impl.Log;
2425
import org.hibernate.reactive.logging.impl.LoggerFactory;
@@ -32,7 +33,8 @@
3233
/**
3334
* @see BasicSelectingDelegate
3435
*/
35-
public class ReactiveBasicSelectingDelegate extends AbstractSelectingDelegate implements ReactiveAbstractSelectingDelegate {
36+
public class ReactiveBasicSelectingDelegate extends AbstractSelectingDelegate implements
37+
ReactiveGeneratedValuesMutationDelegate {
3638

3739
private static final Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() );
3840

hibernate-reactive-core/src/main/java/org/hibernate/reactive/id/insert/ReactiveUniqueKeySelectingDelegate.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import org.hibernate.persister.entity.EntityPersister;
1616
import org.hibernate.reactive.adaptor.impl.PrepareStatementDetailsAdaptor;
1717
import org.hibernate.reactive.adaptor.impl.PreparedStatementAdaptor;
18+
import org.hibernate.reactive.generator.values.ReactiveGeneratedValuesMutationDelegate;
1819
import org.hibernate.reactive.generator.values.internal.ReactiveGeneratedValuesHelper;
1920
import org.hibernate.reactive.logging.impl.Log;
2021
import org.hibernate.reactive.logging.impl.LoggerFactory;
@@ -27,7 +28,8 @@
2728
/**
2829
* @see UniqueKeySelectingDelegate
2930
*/
30-
public class ReactiveUniqueKeySelectingDelegate extends UniqueKeySelectingDelegate implements ReactiveAbstractSelectingDelegate {
31+
public class ReactiveUniqueKeySelectingDelegate extends UniqueKeySelectingDelegate implements
32+
ReactiveGeneratedValuesMutationDelegate {
3133

3234
private static final Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() );
3335

0 commit comments

Comments
 (0)