This commit is contained in:
brausjonas
2023-03-23 22:26:21 +00:00
parent b7dba32a0b
commit 4796ff915d
+2 -2
View File
@@ -31,14 +31,14 @@ public class Server
} }
/** /**
* tries to delete a room by its roomcode * tries to delete a room by its roomcode (will be only called by a rooms timeout for now)
*/ */
public void deleteRoom(String code) public void deleteRoom(String code)
{ {
rooms.get(code).closeRoom(); rooms.get(code).closeRoom();
rooms.remove(code); rooms.remove(code);
//LOG
System.out.println("[" + getDateTime() + "] Room" + code + " successfully deleted"); System.out.println("[" + getDateTime() + "] Room" + code + " successfully deleted");
} }