Skip to content

Commit

Permalink
refactor: 불필요 줄바꿈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rawfishthelgh committed Jan 2, 2024
1 parent 5d6ab7f commit 820c9f0
Showing 1 changed file with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,21 +94,11 @@ private Property toProperty() {

private CareDetail toCareDetail() {
return CareDetail.builder()
.temperature(
toTemperature()
)
.requireHumidity(
this.requireHumidity
)
.postingPlace(
this.postingPlace
)
.specialManageInfo(
this.specialManageInfo
)
.waterCycle(
toWaterCycle()
)
.temperature(toTemperature())
.requireHumidity(this.requireHumidity)
.postingPlace(this.postingPlace)
.specialManageInfo(this.specialManageInfo)
.waterCycle(toWaterCycle())
.build();
}

Expand Down

0 comments on commit 820c9f0

Please sign in to comment.