Skip to content

Commit

Permalink
🔧 JDK 버전 변경에 따른 소스 코드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
tinajeong committed Oct 28, 2024
1 parent 5fe4dfc commit 1429f28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public String getWeatherSummary(double latitude, double longitude) {
return String.format(
"In %s: %s, %.1f°C (feels like %.1f°C)",
response.getName(),
response.getWeather().getFirst().getMain(),
response.getWeather().get(0).getMain(),
response.getMain().getTemp(),
response.getMain().getFeelsLike()
);
Expand Down

0 comments on commit 1429f28

Please sign in to comment.