Skip to content

Commit

Permalink
Fixed error after Kotlin Check
Browse files Browse the repository at this point in the history
  • Loading branch information
davidepalladino-apuliasoft committed Dec 10, 2024
1 parent a9c98d4 commit e1926d5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,8 @@ object HiValValue : Value {
override operator fun compareTo(other: Value): Int {
return when (other) {
is StringValue -> if (other.hiValue() == other) EQUAL else GREATER
else -> if (other is HiValValue) EQUAL else GREATER // TODO: Is much generic. Provide atomic cases.
// TODO: Is much generic. Provide atomic cases.
else -> if (other is HiValValue) EQUAL else GREATER
}
}

Expand Down

0 comments on commit e1926d5

Please sign in to comment.