remove commented-out code

This commit is contained in:
Charles Hall 2024-05-15 15:07:26 -07:00
parent d3b7eecaed
commit 0915aba44c
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
10 changed files with 0 additions and 81 deletions

View file

@ -195,8 +195,6 @@ impl SqliteTable {
let statement_ref = AliasableBox(statement);
//let name = self.name.clone();
let iterator = Box::new(
statement
.query_map([], |row| Ok((row.get_unwrap(0), row.get_unwrap(1))))
@ -279,8 +277,6 @@ impl KvTree for SqliteTable {
let guard = self.engine.read_lock_iterator();
let from = from.to_vec(); // TODO change interface?
//let name = self.name.clone();
if backwards {
let statement = Box::leak(Box::new(
guard

View file

@ -1,10 +1,8 @@
mod account_data;
//mod admin;
mod appservice;
mod globals;
mod key_backups;
mod media;
//mod pdu;
mod pusher;
mod rooms;
mod sending;