You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/09/23 06:36:26 UTC

[isis] branch master updated: ISIS-2222: fixing build after merge

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new fdc2125  ISIS-2222: fixing build after merge
fdc2125 is described below

commit fdc21257746e4b1b1df3ef17784e3738cbb6a3b4
Author: Andi Huber <ah...@apache.org>
AuthorDate: Wed Sep 23 08:36:06 2020 +0200

    ISIS-2222: fixing build after merge
---
 .../java/org/apache/isis/testdomain/conf/Configuration_headless.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/regressiontests/stable/src/main/java/org/apache/isis/testdomain/conf/Configuration_headless.java b/regressiontests/stable/src/main/java/org/apache/isis/testdomain/conf/Configuration_headless.java
index 49d4482..50c948e 100644
--- a/regressiontests/stable/src/main/java/org/apache/isis/testdomain/conf/Configuration_headless.java
+++ b/regressiontests/stable/src/main/java/org/apache/isis/testdomain/conf/Configuration_headless.java
@@ -39,8 +39,7 @@ import org.springframework.transaction.TransactionStatus;
 
 import org.apache.isis.applib.annotation.OrderPrecedence;
 import org.apache.isis.applib.services.command.Command;
-
-import org.apache.isis.applib.services.command.CommandService;
+import org.apache.isis.applib.services.command.CommandServiceInternal;
 import org.apache.isis.applib.services.iactn.Interaction;
 import org.apache.isis.applib.services.iactn.InteractionContext;
 import org.apache.isis.applib.services.metrics.MetricsService;
@@ -111,7 +110,7 @@ public class Configuration_headless {
     public static class HeadlessCommandSupport {
 
         private final Provider<InteractionContext> interactionContextProvider;
-        private final CommandService commandService;
+        private final CommandServiceInternal commandService;
 
 
         @EventListener(IsisInteractionLifecycleEvent.class)