From aefbc04705150cccd4ebc5471e84e600abc98dff Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Tue, 10 Jan 2023 15:28:42 +0100
Subject: [PATCH] test: Removing debug output

---
 .../nibio/vips/util/weather/YrWeatherForecastProviderTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test/java/no/nibio/vips/util/weather/YrWeatherForecastProviderTest.java b/src/test/java/no/nibio/vips/util/weather/YrWeatherForecastProviderTest.java
index 811158e8..b3c21b63 100755
--- a/src/test/java/no/nibio/vips/util/weather/YrWeatherForecastProviderTest.java
+++ b/src/test/java/no/nibio/vips/util/weather/YrWeatherForecastProviderTest.java
@@ -93,12 +93,13 @@ public class YrWeatherForecastProviderTest {
             result = instance.getWeatherForecasts(weatherStation);
             assertNotNull(result);
             Collections.sort(result);
+            /**
             for(WeatherObservation obs:result)
             {
                 if(obs.getElementMeasurementTypeId().equals("TM"))
                 System.out.println(obs.toString());
             }
-            
+            */
             WeatherUtil wUtil = new WeatherUtil();
             //wUtil.checkForAndFixHourlyTimeSeriesHoles(result);
             
-- 
GitLab