From f4863efb2e3a8b3f3ae61916c3510c607ae4df35 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Wed, 31 Dec 2025 10:28:01 -0500 Subject: [PATCH] Fix outdated comment. --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a240abd4e7..50463d133a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -27,7 +27,7 @@ val canonicalVersionName = "7.68.5" val currentHotfixVersion = 0 val maxHotfixVersions = 100 -// Other than the first offset of 0, we don't want versions to ever end in 0 so that they don't conflict with nightly versions +// We don't want versions to ever end in 0 so that they don't conflict with nightly versions val possibleHotfixVersions = (0 until maxHotfixVersions).toList().filter { it % 10 != 0 } val keystores: Map = mapOf("debug" to loadKeystoreProperties("keystore.debug.properties"))