Compare commits

...

1 Commits

Author SHA1 Message Date
Hocuri
20bb3235dc refactor: Remove unneeded deprecated attr
Not sure why it was marked as deprecated, but it's definitely used, and
not discuraged to use (??).
2025-12-18 17:19:24 +01:00

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?;