change name of threshold to days to clarify

This commit is contained in:
Roumen Georgiev 2018-04-04 12:22:54 +03:00 committed by GitHub
parent 5e56e2afa0
commit 2c42bad48d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,9 +98,9 @@ public class CareportalEvent implements DataPointWithLabelInterface {
return diff.get(TimeUnit.DAYS) + " " + MainApp.sResources.getString(R.string.days) + " " + diff.get(TimeUnit.HOURS) + " " + MainApp.sResources.getString(R.string.hours);
}
public boolean isOlderThan(double threshold) {
public boolean isOlderThan(double days) {
Map<TimeUnit, Long> diff = computeDiff(date, System.currentTimeMillis());
if(diff.get(TimeUnit.DAYS) > threshold)
if(diff.get(TimeUnit.DAYS) > days)
return true;
else
return false;