Last commit accidentally called the wrong get*Samples method

This commit is contained in:
cpfeiffer 2015-08-19 00:52:03 +02:00
parent a7796ecbc6
commit 5a4f8fb56f
1 changed files with 1 additions and 1 deletions

View File

@ -483,7 +483,7 @@ public abstract class AbstractChartFragment extends Fragment {
} }
protected List<ActivitySample> getSamples(DBHandler db, GBDevice device) { protected List<ActivitySample> getSamples(DBHandler db, GBDevice device) {
return getAllSamples(db, device, getTSStart(), getTSEnd()); return getSamples(db, device, getTSStart(), getTSEnd());
} }
private int getTSEnd() { private int getTSEnd() {