We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8a4de commit b173488Copy full SHA for b173488
banking/src/main/java/io/github/gunkim/banking/domain/Transaction.java
@@ -29,16 +29,4 @@ public String signedAmount() {
29
public int compareTo(Transaction transaction) {
30
return this.createdAt.compareTo(transaction.createdAt);
31
}
32
-
33
- @Override
34
- public String toString() {
35
- return "Transaction{" +
36
- "id=" + id +
37
- ", accountId=" + accountId +
38
- ", type=" + type +
39
- ", amount=" + amount +
40
- ", balance=" + balance +
41
- ", createdAt=" + createdAt +
42
- '}';
43
- }
44
0 commit comments