Skip to content

Commit

Permalink
Minor Fix, v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KwabenBerko committed Jan 8, 2019
1 parent d7f9d72 commit 798ac19
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
public class Precipitation {

@SerializedName("3h")
private double threeHour;
private Double threeHour;

public double get3h() {
public Double get3h() {
return threeHour;
}

public void set3h(double threeHour) {
public void set3h(Double threeHour) {
this.threeHour = threeHour;
}
}

0 comments on commit 798ac19

Please sign in to comment.