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 2022/05/13 14:54:57 UTC

[isis] branch master updated: ISIS-3050: remove debug line in 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 823a5612c8 ISIS-3050: remove debug line in prev. commit
823a5612c8 is described below

commit 823a5612c8b9a1dca3391a93ae98de58b58dd897
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri May 13 16:41:01 2022 +0200

    ISIS-3050: remove debug line in prev. commit
---
 .../param/support/ActionParameterSupportFacetFactoryAbstract.java  | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/param/support/ActionParameterSupportFacetFactoryAbstract.java b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/param/support/ActionParameterSupportFacetFactoryAbstract.java
index f925c8ae57..5419dec8d8 100644
--- a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/param/support/ActionParameterSupportFacetFactoryAbstract.java
+++ b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/param/support/ActionParameterSupportFacetFactoryAbstract.java
@@ -82,13 +82,6 @@ extends MemberAndPropertySupportFacetFactoryAbstract {
             val paramIndex = searchResult.getParamIndex();
             // add facets directly to parameters, not to actions
             val paramAsHolder = parameters.getElseFail(paramIndex);
-
-            if(searchResult.getSupportingMethod().toString().endsWith(
-                    "HasCommunicationChannels_removeCommunicationChannel.choices0Act()")) {
-                System.err.printf("%s%n", searchResult.getSupportingMethod());
-                System.err.printf("\t%d: %s%n", paramIndex, paramAsHolder.getFeatureIdentifier().toString());
-            }
-
             onSearchResult(paramAsHolder, searchResult);
         });