From 675b667befdea805ace98fa7ad7ab67473c7f9e3 Mon Sep 17 00:00:00 2001 From: Jan Seeger Date: Thu, 5 Sep 2024 14:04:38 +0200 Subject: [PATCH] Apply quick-fix --- .../de/sipgate/dachlatten/primitives/BooleanNullableExt.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dachlatten-primitives/src/main/kotlin/de/sipgate/dachlatten/primitives/BooleanNullableExt.kt b/dachlatten-primitives/src/main/kotlin/de/sipgate/dachlatten/primitives/BooleanNullableExt.kt index ef56453..3d074c3 100644 --- a/dachlatten-primitives/src/main/kotlin/de/sipgate/dachlatten/primitives/BooleanNullableExt.kt +++ b/dachlatten-primitives/src/main/kotlin/de/sipgate/dachlatten/primitives/BooleanNullableExt.kt @@ -1,4 +1,4 @@ package de.sipgate.dachlatten.primitives val Array.allTrue - get() = all { it ?: false } \ No newline at end of file + get() = all { it == true }