You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/11/07 04:46:38 UTC

[14/29] isis git commit: ISIS-537 Revert a change to ToDoItem related to testing of @LabelAt positions committed by mistake

ISIS-537 Revert a change to ToDoItem related to testing of @LabelAt positions committed by mistake


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/e59364a7
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/e59364a7
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/e59364a7

Branch: refs/heads/ISIS-939
Commit: e59364a78216ddca791ba59344e4b518707c55c5
Parents: 8cbe98e
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Nov 6 10:55:09 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Nov 6 10:55:09 2014 +0200

----------------------------------------------------------------------
 .../application/todoapp/dom/src/main/java/dom/todo/ToDoItem.java   | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/e59364a7/example/application/todoapp/dom/src/main/java/dom/todo/ToDoItem.java
----------------------------------------------------------------------
diff --git a/example/application/todoapp/dom/src/main/java/dom/todo/ToDoItem.java b/example/application/todoapp/dom/src/main/java/dom/todo/ToDoItem.java
index dcbd897..8768a74 100644
--- a/example/application/todoapp/dom/src/main/java/dom/todo/ToDoItem.java
+++ b/example/application/todoapp/dom/src/main/java/dom/todo/ToDoItem.java
@@ -135,7 +135,6 @@ public class ToDoItem implements Categorized, Comparable<ToDoItem> {
     @javax.jdo.annotations.Column(allowsNull="false", length=100)
     @PropertyInteraction()
     @RegEx(validation = "\\w[@&:\\-\\,\\.\\+ \\w]*")
-    @LabelAt(LabelAt.Position.TOP)
     public String getDescription() {
         return description;
     }
@@ -255,7 +254,6 @@ public class ToDoItem implements Categorized, Comparable<ToDoItem> {
 
     @javax.jdo.annotations.Column(allowsNull="true")
     @Disabled(reason="Use action to update both category and subcategory")
-    @LabelAt(LabelAt.Position.NONE)
     public Subcategory getSubcategory() {
         return subcategory;
     }