refactor: Remove unneeded deprecated attr

Not sure why it was marked as deprecated, but it's definitely used, and
not discuraged to use (??).
This commit is contained in:
Hocuri
2025-12-18 17:19:24 +01:00
parent 84161f4202
commit 20bb3235dc

View File

@@ -416,7 +416,6 @@ impl Context {
///
/// Returns true if passphrase is correct, false is passphrase is not correct. Fails on other
/// errors.
#[deprecated(since = "TBD")]
pub async fn open(&self, passphrase: String) -> Result<bool> {
if self.sql.check_passphrase(passphrase.clone()).await? {
self.sql.open(self, passphrase).await?;