diff --git a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt index 9636f64..cfb0c1c 100644 --- a/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt +++ b/src/main/kotlin/app/revanced/patcher/patch/PatchOption.kt @@ -229,20 +229,4 @@ sealed class PatchOption( ) : ListOption( key, default, options, title, description, required, validator ) - - /** - * A [PatchOption] representing a [Path], backed by a [String]. - * The validator passes a [String], if you need a [Path] you will have to convert it yourself. - * @see PatchOption - */ - class PathOption( - key: String, - default: Path?, - title: String, - description: String, - required: Boolean = false, - validator: (String?) -> Boolean = { true } - ) : PatchOption( - key, default?.pathString, title, description, required, validator - ) }