···14141515 override fun getFromRange(start: Long, end: Long): List<Record>? {
1616 Timber.d("getFromRange")
1717+ // TODO cache is disabled to avoid synchronization issues, especially in tests
1818+ return null
1719 return recordsByRange[start to end]
1820 }
1921
···13131414 override fun getAll(): List<RecordType> {
1515 Timber.d("getAll")
1616+ // TODO cache is disabled to avoid synchronization issues, especially in tests
1717+ return emptyList()
1618 return recordTypes
1719 }
1820