diff --git a/src/main/kotlin/app/revanced/patcher/patch/options/PatchOption.kt b/src/main/kotlin/app/revanced/patcher/patch/options/PatchOption.kt index cc0d1303..d9409505 100644 --- a/src/main/kotlin/app/revanced/patcher/patch/options/PatchOption.kt +++ b/src/main/kotlin/app/revanced/patcher/patch/options/PatchOption.kt @@ -80,7 +80,6 @@ open class PatchOption( if (!validator(value)) throw PatchOptionException.ValueValidationException(value, this) } - override fun toString() = value.toString() operator fun getValue( @@ -439,7 +438,7 @@ open class PatchOption( ) /** - * Create a new [PatchOption] with a string set value and add it to the current [Patch]. + * Create a new [PatchOption] and add it to the current [Patch]. * * @param key The identifier. * @param default The default value.