From a562e476c085841efbc7ee98b01d8e6bb18ed757 Mon Sep 17 00:00:00 2001 From: Sculas Date: Tue, 6 Sep 2022 22:36:20 +0200 Subject: [PATCH] fix: PathOption should be open, not sealed --- src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt index d82fdde0..3f46829b 100644 --- a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt +++ b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt @@ -196,7 +196,7 @@ sealed class PatchOption( * A [PatchOption] representing a [Path]. * @see PatchOption */ - sealed class PathOption( + open class PathOption( key: String, default: Path?, title: String,