From 43f12680248327f74fdb2d2100ac2cde1c2eecbf Mon Sep 17 00:00:00 2001 From: Hao Ngo Date: Fri, 15 Dec 2023 01:48:17 +0700 Subject: [PATCH] chore: remove unnecessary comments --- server/src/actors/store_actor.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/src/actors/store_actor.rs b/server/src/actors/store_actor.rs index ea06540..091d65f 100644 --- a/server/src/actors/store_actor.rs +++ b/server/src/actors/store_actor.rs @@ -79,9 +79,6 @@ impl Handler for StoreActor { for key in msg.player_ids { let hash_key: String = format!("player:{}:info", key); let player_info: HashMap = con.hgetall(&hash_key)?; - - // If you need to filter out empty rooms, you can add a condition here. - // For example, you can check if room_data is not empty before inserting into results. results.insert(key.clone(), serde_json::to_string(&player_info).unwrap()); }