Skip to content

Commit 643b397

Browse files
committed
[#1648] Rename class: Fix typo in ReactiveUpdateExecutionDelegate
1 parent 5ba3130 commit 643b397

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

hibernate-reactive-core/src/main/java/org/hibernate/reactive/query/sqm/mutation/internal/temptable/ReactiveTableBasedUpdateHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected ReactiveExecutionDelegate resolveDelegate(DomainQueryExecutionContext
8080
}
8181

8282
@Override
83-
protected ReactiveUpdateExcutionDelegate buildExecutionDelegate(
83+
protected ReactiveUpdateExecutionDelegate buildExecutionDelegate(
8484
MultiTableSqmMutationConverter sqmConverter,
8585
TemporaryTable idTable,
8686
AfterUseAction afterUseAction,
@@ -93,7 +93,7 @@ protected ReactiveUpdateExcutionDelegate buildExecutionDelegate(
9393
Map<SqmParameter<?>, List<List<JdbcParameter>>> parameterResolutions,
9494
Map<SqmParameter<?>, MappingModelExpressible<?>> paramTypeResolutions,
9595
DomainQueryExecutionContext executionContext) {
96-
return new ReactiveUpdateExcutionDelegate(
96+
return new ReactiveUpdateExecutionDelegate(
9797
sqmConverter,
9898
idTable,
9999
afterUseAction,
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@
5757
import static org.hibernate.reactive.query.sqm.mutation.internal.temptable.ReactiveExecuteWithTemporaryTableHelper.saveMatchingIdsIntoIdTable;
5858
import static org.hibernate.reactive.util.impl.CompletionStages.voidFuture;
5959

60-
public class ReactiveUpdateExcutionDelegate extends UpdateExecutionDelegate implements ReactiveTableBasedUpdateHandler.ReactiveExecutionDelegate {
60+
public class ReactiveUpdateExecutionDelegate extends UpdateExecutionDelegate implements ReactiveTableBasedUpdateHandler.ReactiveExecutionDelegate {
6161

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

64-
public ReactiveUpdateExcutionDelegate(
64+
public ReactiveUpdateExecutionDelegate(
6565
MultiTableSqmMutationConverter sqmConverter,
6666
TemporaryTable idTable,
6767
AfterUseAction afterUseAction,
@@ -214,13 +214,13 @@ private CompletionStage<Integer> executeUpdate(QuerySpec idTableSubQuery, Execut
214214
return StandardReactiveJdbcMutationExecutor.INSTANCE
215215
.executeReactive(
216216
jdbcUpdate,
217-
getJdbcParameterBindings(),
218-
executionContext.getSession()
217+
getJdbcParameterBindings(),
218+
executionContext.getSession()
219219
.getJdbcCoordinator()
220220
.getStatementPreparer()
221221
::prepareStatement,
222-
ReactiveUpdateExcutionDelegate::doNothing,
223-
executionContext
222+
ReactiveUpdateExecutionDelegate::doNothing,
223+
executionContext
224224
);
225225
}
226226

@@ -294,7 +294,7 @@ private CompletionStage<Integer> executeInsert(
294294
.getJdbcCoordinator()
295295
.getStatementPreparer()
296296
::prepareStatement,
297-
ReactiveUpdateExcutionDelegate::doNothing,
297+
ReactiveUpdateExecutionDelegate::doNothing,
298298
executionContext
299299
);
300300
}

0 commit comments

Comments
 (0)