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 2020/01/16 15:48:29 UTC

[isis] branch master updated: ISIS-2265: reverse wrong substitutor order

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 9766910  ISIS-2265: reverse wrong substitutor order
9766910 is described below

commit 9766910082076ed595b71f64f936990f952f6e41
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Jan 16 16:48:18 2020 +0100

    ISIS-2265: reverse wrong substitutor order
---
 .../services/classsubstitutor/ClassSubstitutorForCollections.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/classsubstitutor/ClassSubstitutorForCollections.java b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/classsubstitutor/ClassSubstitutorForCollections.java
index 4200f83..a690888 100644
--- a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/classsubstitutor/ClassSubstitutorForCollections.java
+++ b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/classsubstitutor/ClassSubstitutorForCollections.java
@@ -35,7 +35,7 @@ import org.apache.isis.core.metamodel.spec.FreeStandingList;
 
 @Component
 @Named("isisMetaModel.ClassSubstitutorForCollections")
-@Order(OrderPrecedence.MIDPOINT + 1)
+@Order(OrderPrecedence.MIDPOINT - 10)
 public class ClassSubstitutorForCollections implements ClassSubstitutor {
 
     @Override