Skip to content

Commit

Permalink
Fixed refill date format (#76)
Browse files Browse the repository at this point in the history
* Fixed refill date format to close #71
  • Loading branch information
pmanko authored Jan 11, 2022
1 parent e81a99d commit 66e5c9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1083,8 +1083,8 @@ public void setDataSource(String dataSource) {
this.dataSource = dataSource;
}

public Date getNextRefill() {
return nextRefill;
public String getNextRefill() {
return formatDate(nextRefill);
}

public void setNextRefill(Date nextRefill) {
Expand Down

0 comments on commit 66e5c9f

Please sign in to comment.