diff --git a/android/app/src/main/java/com/fabledsword/minstrel/home/data/HomeRepository.kt b/android/app/src/main/java/com/fabledsword/minstrel/home/data/HomeRepository.kt index 26c54578..25b3908c 100644 --- a/android/app/src/main/java/com/fabledsword/minstrel/home/data/HomeRepository.kt +++ b/android/app/src/main/java/com/fabledsword/minstrel/home/data/HomeRepository.kt @@ -39,6 +39,9 @@ import javax.inject.Singleton * pre-warms the top artists via [HomeArtistPrewarmer]. */ @Singleton +// Per-section observe accessors (one per Home row) inflate the function +// count past detekt's 11 default — accessor density, not complexity. +@Suppress("TooManyFunctions") class HomeRepository @Inject constructor( private val homeIndexDao: CachedHomeIndexDao, private val metadataProvider: MetadataProvider,