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 2019/10/05 10:07:57 UTC

[isis] branch v2 updated: ISIS-2158: remove debug code

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

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


The following commit(s) were added to refs/heads/v2 by this push:
     new 338b10d  ISIS-2158: remove debug code
338b10d is described below

commit 338b10d00a82236742b3f059714402568068bf93
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Oct 5 12:07:49 2019 +0200

    ISIS-2158: remove debug code
---
 .../properties/propertylayout/PropertyLayoutFacetFactory.java     | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/core/metamodel/src/main/java/org/apache/isis/metamodel/facets/properties/propertylayout/PropertyLayoutFacetFactory.java b/core/metamodel/src/main/java/org/apache/isis/metamodel/facets/properties/propertylayout/PropertyLayoutFacetFactory.java
index d456d67..3f48088 100644
--- a/core/metamodel/src/main/java/org/apache/isis/metamodel/facets/properties/propertylayout/PropertyLayoutFacetFactory.java
+++ b/core/metamodel/src/main/java/org/apache/isis/metamodel/facets/properties/propertylayout/PropertyLayoutFacetFactory.java
@@ -75,13 +75,7 @@ public class PropertyLayoutFacetFactory extends FacetFactoryAbstract implements
         
         val describedAsFacet = DescribedAsFacetForPropertyLayoutAnnotation.create(propertyLayout, holder);
         FacetUtil.addFacet(describedAsFacet);
-        
-        val m = (FacetedMethod) holder;
-        val c = m.getOwningType();
-        if(c.getSimpleName().equals("TemporalDemo")) {
-            System.out.println("### " + m.getMethod().getName() + " -> " + describedAsFacet);
-        }
-        
+
     }
 
     void processPromptStyle(final FacetHolder holder, final Optional<PropertyLayout> propertyLayout) {