From 1bb370fd60534c5d5550d72cd3952547b5d7bec2 Mon Sep 17 00:00:00 2001 From: Graham Date: Sun, 14 Jan 2024 11:51:41 +0000 Subject: [PATCH] Convert IntValueSet.Unknown to a data object Signed-off-by: Graham --- .../kotlin/org/openrs2/deob/bytecode/analysis/IntValueSet.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deob-bytecode/src/main/kotlin/org/openrs2/deob/bytecode/analysis/IntValueSet.kt b/deob-bytecode/src/main/kotlin/org/openrs2/deob/bytecode/analysis/IntValueSet.kt index a72d802d..33b5d50e 100644 --- a/deob-bytecode/src/main/kotlin/org/openrs2/deob/bytecode/analysis/IntValueSet.kt +++ b/deob-bytecode/src/main/kotlin/org/openrs2/deob/bytecode/analysis/IntValueSet.kt @@ -22,7 +22,7 @@ public sealed class IntValueSet { } } - public object Unknown : IntValueSet() { + public data object Unknown : IntValueSet() { override val singleton: Int? get() = null