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/01/08 09:56:24 UTC

[isis] branch master updated: ISIS-2938: test fixes

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 c9c408b  ISIS-2938: test fixes
c9c408b is described below

commit c9c408b328340947b2ba6b161d56baad4b0f15f2
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Jan 8 10:56:14 2022 +0100

    ISIS-2938: test fixes
---
 .../apache/isis/testdomain/model/good/ProperInterface2.java | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/regressiontests/stable/src/main/java/org/apache/isis/testdomain/model/good/ProperInterface2.java b/regressiontests/stable/src/main/java/org/apache/isis/testdomain/model/good/ProperInterface2.java
index 39cd192..e76c713 100644
--- a/regressiontests/stable/src/main/java/org/apache/isis/testdomain/model/good/ProperInterface2.java
+++ b/regressiontests/stable/src/main/java/org/apache/isis/testdomain/model/good/ProperInterface2.java
@@ -18,24 +18,23 @@
  */
 package org.apache.isis.testdomain.model.good;
 
-import org.apache.isis.applib.annotations.DomainObject;
+import org.apache.isis.applib.annotations.LogicalTypeName;
 import org.apache.isis.applib.annotations.Property;
 
-@DomainObject(logicalTypeName = "isis.testdomain.ProperInterface2")
-public interface ProperInterface2 
+@LogicalTypeName("isis.testdomain.ProperInterface2")
+public interface ProperInterface2
 extends ProperInterface {
 
     @Property
     default String getE() {
         return "e";
     }
-    default void setE(String prop) {
+    default void setE(final String prop) {
         // no-op, just testing meta-data
     }
-    
+
     @Property
     String getF();
     void setF(String prop);
-    
-    
+
 }