make some val constant

This commit is contained in:
2025-09-15 21:41:25 +02:00
parent e5e486c315
commit 3e2bdca083
2 changed files with 15 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ package it.danieleverducci.lunatracker.entities
class Logbook(val name: String) {
companion object {
val MAX_SAFE_LOGBOOK_SIZE = 30000
const val MAX_SAFE_LOGBOOK_SIZE = 30000
}
val logs = ArrayList<LunaEvent>()