···11package com.example.util.simpletimetracker.domain.model
2233+// TODO switch to typealias to avoid object creation.
34data class Range(
45 val timeStarted: Long,
56 val timeEnded: Long
···366366 }
367367368368 private suspend fun loadRecordsCache() {
369369+ // Load all records without date filter for faster date selection.
369370 records = recordFilterInteractor.getByFilter(filter)
370371 compareRecords = recordFilterInteractor.getByFilter(comparisonFilter)
371372 }