Travis Griggs
12/19/2023, 9:12 PMprivate const val ROW_COUNT = 3
private val oneWeek = 7.days
(used for a 7x3 calendar view)
This seems undesirable/inconsistent to me. I would personally prefer that top level "globals" were consistent in some fashion. Am I the only other renegade out there? Or are others just ignoring these warnings?Youssef Shoaib [MOD]
12/19/2023, 11:31 PMDaniel Pitts
12/20/2023, 12:58 AMconst val rowCount = 3
Daniel Pitts
12/20/2023, 12:59 AMMichael de Kaste
12/20/2023, 3:10 PMMichael de Kaste
12/20/2023, 3:10 PMMichael de Kaste
12/20/2023, 3:11 PMMichael de Kaste
12/20/2023, 3:11 PMTravis Griggs
12/20/2023, 5:42 PMMichael de Kaste
12/21/2023, 6:54 PMobject CacheManagerName {
const val SINGLE_LEVEL_CACHE_MANAGER = "singleLevelCacheManager"
const val MULTI_LEVEL_CACHE_MANAGER = "multiLevelCacheManager"
}
and (excuse the dutch, but you get the gist)
object PatientConstants {
const val DECLAREERBAAR_BSN = "999999999"
const val ONDECLAREERBAAR_BSN = "000000000"
val OVERGANGSPATIENT_PEILDATUM: LocalDate = LocalDate.of(2022, 1, 1)
}