Skip to content

Commit

Permalink
[#140] refactor: toString 공백 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JuHyun419 committed Sep 10, 2022
1 parent c8f173e commit 12a8c86
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ class Remind() {
}

override fun toString(): String {
return StringBuilder().append("Remind [")
return StringBuilder().append("Remind - [")
.append("userId: $userId")
.append("remindTime: $remindTime")
.append("remindCheck: $remindCheck")
.append("remindStatus: $remindStatus")
.append(", remindTime: $remindTime")
.append(", remindCheck: $remindCheck")
.append(", remindStatus: $remindStatus")
.append("]")
.toString()
}
Expand Down

0 comments on commit 12a8c86

Please sign in to comment.