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 2021/12/04 06:48:20 UTC

[isis] branch master updated: ISIS-2903: fix type inference issue on prev. commit

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 1f7ff83  ISIS-2903: fix type inference issue on prev. commit
1f7ff83 is described below

commit 1f7ff8377bec8e14e377572c45440852535f2773
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Dec 4 07:48:14 2021 +0100

    ISIS-2903: fix type inference issue on prev. commit
---
 .../isis/viewer/wicket/ui/panels/FormExecutorDefault.java     | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/panels/FormExecutorDefault.java b/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/panels/FormExecutorDefault.java
index 01128f4..e26f520 100644
--- a/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/panels/FormExecutorDefault.java
+++ b/viewers/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/panels/FormExecutorDefault.java
@@ -106,10 +106,13 @@ implements FormExecutor {
             }
 
             _Debug.onCondition(XrayUi.isXrayEnabled(), ()->{
-                _Debug.log(10, "execute %s ...", actionOrPropertyModel
-                        .fold(
-                                act->act.getFriendlyName(),
-                                prop->prop.getFriendlyName()));
+
+                final String whatIsExecuted = actionOrPropertyModel
+                .fold(
+                        act->act.getFriendlyName(),
+                        prop->prop.getFriendlyName());
+
+                _Debug.log(10, "execute %s ...", whatIsExecuted);
             });
 
             //