diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-06-27 17:29:42 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-06-27 18:07:29 +0530 |
commit | 6a18c04e382332c273168fee706adfd9b05bffb8 (patch) | |
tree | dd01b594846d0085fa733fd708acf60209ffef4a /app | |
parent | b3be9bad2645b425ae91860f8b53f4d88304917c (diff) |
fix: remove unused feature flag
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/app/passwordstore/util/features/Feature.kt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/src/main/java/app/passwordstore/util/features/Feature.kt b/app/src/main/java/app/passwordstore/util/features/Feature.kt index 44af5b70..f046dbd7 100644 --- a/app/src/main/java/app/passwordstore/util/features/Feature.kt +++ b/app/src/main/java/app/passwordstore/util/features/Feature.kt @@ -13,13 +13,6 @@ enum class Feature( val configKey: String, ) { - /** Opt into the new PGP backend powered by the PGPainless library. */ - @Deprecated( - "The PGPainless backend is now the only available one", - level = DeprecationLevel.ERROR - ) - EnablePGPainlessBackend(true, "enable_pgp_v2_backend"), - /** Opt into the new SSH layer implemented as a freestanding module. */ EnableNewSSHLayer(false, "enable_new_ssh"), |