Skip to content

Commit 12db9e4

Browse files
Follow-up: fix deprecation due to new Kotlin version of Gradle 8.
1 parent e967f65 commit 12db9e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ buildscript {
2626
// Native library version for tests
2727
// Be careful to diverge here; easy to forget and hard to find JNI problems
2828
val nativeVersion = objectboxVersionNumber + (if (objectboxVersionRelease) "" else "-dev-SNAPSHOT")
29-
val osName = System.getProperty("os.name").toLowerCase()
29+
val osName = System.getProperty("os.name").lowercase()
3030
val objectboxPlatform = when {
3131
osName.contains("linux") -> "linux"
3232
osName.contains("windows") -> "windows"

0 commit comments

Comments
 (0)