Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Fix crash
Browse files Browse the repository at this point in the history
Signed-off-by: micrusa <[email protected]>
  • Loading branch information
micrusa committed Apr 27, 2020
1 parent aa23943 commit ada791b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ private void setupLang(){
private void setTexts(){
//Set all values texts
file file = new file(defValues.latestTrainFile, this);
avghr.setText(file.get(defValues.sAvgHr, defValues.defHrValues));
maxhr.setText(file.get(defValues.sMaxHr, defValues.defHrValues));
minhr.setText(file.get(defValues.sMinHr, defValues.defHrValues));
kcal.setText(file.get(defValues.sKcal, defValues.defHrValues));
avghr.setText(String.valueOf(file.get(defValues.sAvgHr, defValues.defHrValues)));
maxhr.setText(String.valueOf(file.get(defValues.sMaxHr, defValues.defHrValues)));
minhr.setText(String.valueOf(file.get(defValues.sMinHr, defValues.defHrValues)));
kcal.setText(String.valueOf(file.get(defValues.sKcal, defValues.defHrValues)));
}
}

0 comments on commit ada791b

Please sign in to comment.