You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by jo...@apache.org on 2020/06/22 05:08:10 UTC

[isis] branch master updated: ISIS-2350 clean out console.log's

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

joergrade 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 6c99174  ISIS-2350 clean out console.log's
6c99174 is described below

commit 6c9917487bbe93756bc1ab63157de48f3717e6d9
Author: Jörg Rade <jo...@kuehne-nagel.com>
AuthorDate: Mon Jun 22 07:07:51 2020 +0200

    ISIS-2350 clean out console.log's
---
 .../src/main/kotlin/org/apache/isis/client/kroviz/ui/kv/MenuFactory.kt  | 2 --
 1 file changed, 2 deletions(-)

diff --git a/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/ui/kv/MenuFactory.kt b/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/ui/kv/MenuFactory.kt
index 3a6f343..806eb9f 100644
--- a/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/ui/kv/MenuFactory.kt
+++ b/incubator/clients/kroviz/src/main/kotlin/org/apache/isis/client/kroviz/ui/kv/MenuFactory.kt
@@ -95,12 +95,10 @@ object MenuFactory {
     fun buildForAction(
             menuTitle: String,
             actionTitle: String): KvisionHtmlLink? {
-        console.log("[MF.buildForAction] $menuTitle / $actionTitle")
         val menu = findMenuByTitle(menuTitle)!!
         menu.section.forEachIndexed { _, section ->
             section.serviceAction.forEach { sa ->
                 val saTitle = Utils.deCamel(sa.id!!)
-                console.log(saTitle)
                 if (saTitle == actionTitle) {
                     val action = buildActionLink(sa.id, menuTitle)
                     action.label = ""