This is an automated email from the ASF dual-hosted git repository. ahuber pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/main by this push: new 3465f660c25 CAUSEWAY-3883: simplify finisher 3465f660c25 is described below commit 3465f660c251d743bef77d28e133624a0f1554ef Author: Andi Huber <ahu...@apache.org> AuthorDate: Fri Jun 27 12:11:08 2025 +0200 CAUSEWAY-3883: simplify finisher --- .../causeway/core/runtimeservices/wrapper/AsyncExecutionFinisher.java | 2 -- .../causeway/core/runtimeservices/wrapper/WrapperFactoryDefault.java | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/AsyncExecutionFinisher.java b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/AsyncExecutionFinisher.java index 7e4c1ade1f1..e9a40b325b2 100644 --- a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/AsyncExecutionFinisher.java +++ b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/AsyncExecutionFinisher.java @@ -20,14 +20,12 @@ import org.apache.causeway.applib.services.repository.RepositoryService; import org.apache.causeway.applib.services.wrapper.WrapperFactory; -import org.apache.causeway.applib.services.xactn.TransactionService; import org.apache.causeway.core.metamodel.object.MmEntityUtils; import org.apache.causeway.core.metamodel.objectmanager.ObjectManager; record AsyncExecutionFinisher( WrapperFactory wrapperFactory, RepositoryService repositoryService, - TransactionService transactionService, ObjectManager objectManager ) { diff --git a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/WrapperFactoryDefault.java b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/WrapperFactoryDefault.java index 4b9b6d31be6..dcb41fe738d 100644 --- a/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/WrapperFactoryDefault.java +++ b/core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/WrapperFactoryDefault.java @@ -116,7 +116,7 @@ public class WrapperFactoryDefault @Getter(lazy = true) @Accessors(fluent=true) private final AsyncExecutionFinisher executionFinisher = - new AsyncExecutionFinisher(this, getRepositoryService(), getTransactionService(), getObjectManager()); + new AsyncExecutionFinisher(this, getRepositoryService(), getObjectManager()); @PostConstruct public void init() {