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 2017/10/27 07:50:38 UTC

[isis] 13/13: ISIS-1762 fixing won't compile on eclipse

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

ahuber pushed a commit to branch dev/2.0.0/ISIS-1762-j8-utils
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 4a9a3aafaf5992d214637c3d5232df120ff045bd
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Oct 27 09:49:32 2017 +0200

    ISIS-1762 fixing won't compile on eclipse
---
 .../viewer/wicket/model/models/LowestCommonSuperclassClosureTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/viewer-wicket-model/src/test/java/org/apache/isis/viewer/wicket/model/models/LowestCommonSuperclassClosureTest.java b/core/viewer-wicket-model/src/test/java/org/apache/isis/viewer/wicket/model/models/LowestCommonSuperclassClosureTest.java
index 08205b2..da2cb46 100644
--- a/core/viewer-wicket-model/src/test/java/org/apache/isis/viewer/wicket/model/models/LowestCommonSuperclassClosureTest.java
+++ b/core/viewer-wicket-model/src/test/java/org/apache/isis/viewer/wicket/model/models/LowestCommonSuperclassClosureTest.java
@@ -53,7 +53,7 @@ public class LowestCommonSuperclassClosureTest {
         assertLowestCommonOfListIs(listOf(Lion.class, Lion.class), Lion.class);
     }
     
-    private static void assertLowestCommonOfListIs(List<Class<? extends Object>> list, Class<?> expected) {
+    private static void assertLowestCommonOfListIs(List<Class<?>> list, Class<?> expected) {
         EntityCollectionModel.LowestCommonSuperclassClosure closure = new EntityCollectionModel.LowestCommonSuperclassClosure();
         IterableExtensions.fold(list, closure);
         assertThat(closure.getLowestCommonSuperclass(), IsisMatchers.classEqualTo(expected));

-- 
To stop receiving notification emails like this one, please contact
"commits@isis.apache.org" <co...@isis.apache.org>.