From c0ac21148ff66d3b86249dc141c1cdabb65959ff Mon Sep 17 00:00:00 2001 From: selim Date: Sun, 16 Jun 2024 05:17:06 +0200 Subject: [PATCH] weather_forecast output slightly adjusted --- src/main/java/de/hs_mannheim/domain/System.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/de/hs_mannheim/domain/System.java b/src/main/java/de/hs_mannheim/domain/System.java index 997e035..283b5e9 100644 --- a/src/main/java/de/hs_mannheim/domain/System.java +++ b/src/main/java/de/hs_mannheim/domain/System.java @@ -555,11 +555,11 @@ public class System { result[1] = "Es ist ein Fehler aufgetreten!"; result[2] = "Es ist ein Fehler aufgetreten!"; } else { - result[0] = day1date + " " + weather_day_1 + " H: " + temperature_day_1_high + "°C" + " T: " + result[0] = day1date + ": " + weather_day_1 + " H: " + temperature_day_1_high + "°C" + " T: " + temperature_day_1_low + "°C"; - result[1] = day2date + " " + weather_day_2 + " H: " + temperature_day_2_high + "°C" + " T: " + result[1] = day2date + ": " + weather_day_2 + " H: " + temperature_day_2_high + "°C" + " T: " + temperature_day_2_low + "°C"; - result[2] = day3date + " " + weather_day_3 + " H: " + temperature_day_3_high + "°C" + " T: " + result[2] = day3date + ": " + weather_day_3 + " H: " + temperature_day_3_high + "°C" + " T: " + temperature_day_3_low + "°C"; }