Skip to content

Commit

Permalink
Transaction 클래스의 toString 메소드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
gunkim committed May 20, 2024
1 parent 8f8a4de commit b173488
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,4 @@ public String signedAmount() {
public int compareTo(Transaction transaction) {
return this.createdAt.compareTo(transaction.createdAt);
}

@Override
public String toString() {
return "Transaction{" +
"id=" + id +
", accountId=" + accountId +
", type=" + type +
", amount=" + amount +
", balance=" + balance +
", createdAt=" + createdAt +
'}';
}
}

0 comments on commit b173488

Please sign in to comment.