Skip to content

Commit 2817b14

Browse files
committed
## 2.3.32
* Issue #317 switch Context is broken * Issue #318 Broken: http://localhost:8080/taskstate/task/1153/changeorderto/1051 * fixed #319 groovy-all Warning during startup * fixed #320 warning: SLF4J: Class path contains multiple SLF4J bindings. * fixed #321 jar is too fat for deployment on heroku
1 parent a254a6c commit 2817b14

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/org/woehlke/simpleworklist/application/common/AuditModel.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
value = {"rowCreatedAt", "rowUpdatedAt"},
2121
allowGetters = true
2222
)
23-
@ToString
23+
//@ToString
2424
@Getter
2525
@Setter
26-
@EqualsAndHashCode(callSuper=false)
26+
//@EqualsAndHashCode(callSuper=false)
2727
public class AuditModel implements Serializable {
2828

2929
private static final long serialVersionUID = 4399373914714726911L;
@@ -67,7 +67,7 @@ public void setRowUpdatedAt(Date rowUpdatedAt) {
6767
}
6868
*/
6969

70-
/*
70+
7171
@Override
7272
public boolean equals(Object o) {
7373
if (this == o) return true;
@@ -82,7 +82,6 @@ public boolean equals(Object o) {
8282
public int hashCode() {
8383
return Objects.hash(getUuid(), getRowCreatedAt(), getRowUpdatedAt());
8484
}
85-
*/
8685

8786
@Override
8887
public String toString() {

0 commit comments

Comments
 (0)