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/01/26 21:30:23 UTC

[isis] branch master updated: ISIS-2431: fixes validation error message

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 d4cdb04  ISIS-2431: fixes validation error message
d4cdb04 is described below

commit d4cdb040d1d274e96e67cb403022e2374fe2db89
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Jan 26 22:29:57 2021 +0100

    ISIS-2431: fixes validation error message
---
 .../isis/core/metamodel/facets/object/mixin/MixinFacetAbstract.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/object/mixin/MixinFacetAbstract.java b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/object/mixin/MixinFacetAbstract.java
index e13f54e..12775ca 100644
--- a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/object/mixin/MixinFacetAbstract.java
+++ b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/facets/object/mixin/MixinFacetAbstract.java
@@ -77,7 +77,7 @@ implements MixinFacet {
             val msg = String.format("Could not find the 'mixed-in' domain object within %s" 
                             + " (tried to guess by looking at all public and non-public fields "
                             + "and matching one against the constructor parameter's type)", 
-                            mixinType.getClass().getName());
+                            mixinType.getName());
             log.warn(msg);
             
             if(mixinTypeValidator!=null) {