Set the sample provider in getLatestActivitySample()
This commit is contained in:
parent
6520b46238
commit
cc0fbff297
|
@ -89,7 +89,9 @@ public abstract class AbstractSampleProvider<T extends AbstractActivitySample> i
|
||||||
if (samples.isEmpty()) {
|
if (samples.isEmpty()) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return samples.get(0);
|
T sample = samples.get(0);
|
||||||
|
sample.setProvider(this);
|
||||||
|
return sample;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected List<T> getGBActivitySamples(int timestamp_from, int timestamp_to, int activityType) {
|
protected List<T> getGBActivitySamples(int timestamp_from, int timestamp_to, int activityType) {
|
||||||
|
|
Loading…
Reference in New Issue