diff --git a/src/world/room.rs b/src/world/room.rs index e17cb63..acfd45b 100644 --- a/src/world/room.rs +++ b/src/world/room.rs @@ -78,9 +78,6 @@ impl<'a> TryFrom<&Row<'a>> for Room { type Error = Box; fn try_from(row: &Row) -> Result { - //let orig_id: String = try_log!(row.get("id"), "id"); - //let new_id: Uuid = try_log!(Uuid::parse_str(&orig_id), "parse"); - Ok(Self { id: try_log!(row.get("id"), "id"), zone: try_log!(row.get("zone"), "zone"),