Skip to content

Commit

Permalink
Merge pull request #1690 from /issues/1689-toString-cycle
Browse files Browse the repository at this point in the history
Fix #1689: Cycle in toString of RecoveryCodeEntity and ApplicationEntity (1.7.x)
  • Loading branch information
banterCZ authored Oct 2, 2024
2 parents 217e5c9 + 2fa65f1 commit a86d873
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 a86d873

Please sign in to comment.