Skip to content

Commit b173488

Browse files
committed
Transaction 클래스의 toString 메소드 제거
1 parent 8f8a4de commit b173488

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

banking/src/main/java/io/github/gunkim/banking/domain/Transaction.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,4 @@ public String signedAmount() {
2929
public int compareTo(Transaction transaction) {
3030
return this.createdAt.compareTo(transaction.createdAt);
3131
}
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-
}
4432
}

0 commit comments

Comments
 (0)