core/storage: Remove unused import from encryption.rs

This commit is contained in:
Pekka Enberg
2025-09-30 11:13:10 +03:00
parent 2b59863447
commit f8a9bb1158

View File

@@ -1,5 +1,5 @@
#![allow(unused_variables, dead_code)]
use crate::{turso_assert, LimboError, Result};
use crate::{LimboError, Result};
use aegis::aegis128l::Aegis128L;
use aegis::aegis128x2::Aegis128X2;
use aegis::aegis128x4::Aegis128X4;
@@ -685,7 +685,7 @@ impl EncryptionContext {
);
// since this is page 1, this must have header
turso_assert!(
crate::turso_assert!(
page.starts_with(SQLITE_HEADER),
"Page 1 must start with SQLite header"
);