Skip to content

Commit 798ac19

Browse files
committed
Minor Fix, v2.0.1
1 parent d7f9d72 commit 798ac19

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/models/threehourforecast

openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/models/threehourforecast/Precipitation.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
public class Precipitation {
66

77
@SerializedName("3h")
8-
private double threeHour;
8+
private Double threeHour;
99

10-
public double get3h() {
10+
public Double get3h() {
1111
return threeHour;
1212
}
1313

14-
public void set3h(double threeHour) {
14+
public void set3h(Double threeHour) {
1515
this.threeHour = threeHour;
1616
}
1717
}

0 commit comments

Comments
 (0)