Skip to content

Commit 446577a

Browse files
committed
work in progres
1 parent d8cd432 commit 446577a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/woehlke/simpleworklist/project/Project.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@Getter
3838
@Setter
3939
@EqualsAndHashCode(callSuper = true)
40-
@ToString(callSuper = true)
40+
@ToString(callSuper = true, exclude = "children")
4141
public class Project extends AuditModel implements Serializable, ComparableById<Project> {
4242

4343
private static final long serialVersionUID = 4566653175832872422L;

src/main/java/org/woehlke/simpleworklist/user/account/UserAccount.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@Getter
3636
@Setter
3737
@EqualsAndHashCode(callSuper = true)
38-
@ToString(callSuper = true, exclude = {"userPassword","defaultContext","lastLoginTimestamp"})
38+
@ToString(callSuper = true, exclude = {"userPassword","defaultLanguage","defaultContext","lastLoginTimestamp"})
3939
public class UserAccount extends AuditModel implements Serializable, ComparableById<UserAccount> {
4040

4141
private static final long serialVersionUID = 7860692526488291439L;

0 commit comments

Comments
 (0)