Skip to content

Commit

Permalink
Refactor(#31): 파라미터 컨벤션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KIMSEI1124 committed Oct 17, 2024
1 parent 10ab3cc commit 3d5d12c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ public record OpenWeatherResponse(
long dateTime
) {

public static WeatherResponse of(final int id, final String main, final String desc) {
public static WeatherResponse of(
final int id,
final String main,
final String desc
) {
return new WeatherResponse(id, main, desc);
}

Expand Down

0 comments on commit 3d5d12c

Please sign in to comment.