From b30336e483f533d96128c1106f9729eb5f31267c Mon Sep 17 00:00:00 2001 From: deotime <89555032+DeoTimeTheGithubUser@users.noreply.github.com> Date: Tue, 14 Mar 2023 10:25:25 -0500 Subject: [PATCH] Fix spacing in NullValue --- .../kotlin/co/q64/emotion/core/lang/value/NullValue.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt b/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt index 79cd0ce..cb3fe03 100644 --- a/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt +++ b/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt @@ -5,10 +5,9 @@ import co.q64.emotion.core.value.NullType import co.q64.emotion.core.value.Value import co.q64.emotion.core.value.value -object NullValue : Value { +object NullValue : Value { override val type get() = NullType override val number = 0.rational() override fun compareTo(other: Value) = number.value().compareTo(other) override fun toString(): String = "" - -} \ No newline at end of file +}