From b058aac5da93f0c9414b551d462c1bb5353dab0a Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Mon, 2 Mar 2026 09:27:01 +0100 Subject: [PATCH] review: delete unused read from source while mapping attributes --- 01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs b/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs index 5b12086..af9a0aa 100644 --- a/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs +++ b/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs @@ -2,7 +2,6 @@ use crate::*; pub fn run(row: &rusqlite::Row) -> rusqlite::Result { let id: String = row.get(0)?; - let _entity_id: String = row.get(1)?; let signed_int: Option = row.get(2)?; let unsigned_int: Option = row.get(3)?; let real: Option = row.get(4)?;