Skip to content

Commit

Permalink
Merge pull request #1691 from /issues/1689-toString-cycle-backport
Browse files Browse the repository at this point in the history
Fix #1689: Cycle in toString of RecoveryCodeEntity and ApplicationEntity (1.6.x)
  • Loading branch information
banterCZ authored Oct 2, 2024
2 parents 459a215 + 0ef6d52 commit 15bdc85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public boolean equals(Object obj) {
public String toString() {
return "RecoveryCodeEntity{"
+ "id=" + id
+ ", application=" + application.toString()
+ ", applicationId=" + application.getId()
+ ", userId=" + userId
+ ", activationId=" + activationId
+ ", status=" + status
Expand Down

0 comments on commit 15bdc85

Please sign in to comment.