Skip to content

Commit

Permalink
Missing no-arg constructor for heart rate unit value. Caused issues w…
Browse files Browse the repository at this point in the history
…ith de-serialization in client app.
  • Loading branch information
danilobonilla committed Sep 19, 2014
1 parent 487a2d0 commit 74ee53f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ public static Unit valueForLabel(String label) {
}
}

public HeartRateUnitValue() {
}

public HeartRateUnitValue(Integer value, Unit unit) {
this.value = value;
this.unit = unit;
Expand Down

0 comments on commit 74ee53f

Please sign in to comment.