No time for comments
authorgu.martinm@gmail.com <gu.martinm@gmail.com>
Fri, 4 Apr 2014 03:09:19 +0000 (05:09 +0200)
committergu.martinm@gmail.com <gu.martinm@gmail.com>
Fri, 4 Apr 2014 03:09:19 +0000 (05:09 +0200)
src/de/example/exampletdd/parser/JPOSWeatherParser.java

index ab23011..f92a2ef 100644 (file)
@@ -39,8 +39,14 @@ public class JPOSWeatherParser implements IJPOSWeatherParser {
 
         jsonObject = jsonWeatherData.getJSONObject("main");
         final double temp = jsonObject.getDouble("temp");
-        final double minTemp = jsonObject.getDouble("temp_min");
-        final double maxTemp = jsonObject.getDouble("temp_max");
+        double minTemp = 0;
+        try {
+            minTemp = jsonObject.getDouble("temp_min");
+        } catch (final JSONException e) {}
+        double maxTemp = 0;
+        try {
+            maxTemp = jsonObject.getDouble("temp_max");
+        } catch (final JSONException e) {}
         final double humidity = jsonObject.getDouble("humidity");
         final double pressure = jsonObject.getDouble("pressure");
         final WeatherData.Main main = new WeatherData.Main(temp, minTemp,