Remove some old todos

This commit is contained in:
Joscha 2024-01-02 17:26:18 +01:00
parent b302229d7c
commit 5bbf389dbe
3 changed files with 0 additions and 4 deletions

View file

@ -122,7 +122,6 @@ pub struct General {
#[serde(default = "default::general::confirm")] #[serde(default = "default::general::confirm")]
pub confirm: KeyBinding, pub confirm: KeyBinding,
/// Advance focus. /// Advance focus.
// TODO Mention examples where this is used
#[serde(default = "default::general::focus")] #[serde(default = "default::general::focus")]
pub focus: KeyBinding, pub focus: KeyBinding,
/// Show this help. /// Show this help.

View file

@ -1,4 +1,3 @@
// TODO Stop if room does not exist (e.g. 404)
// TODO Remove rl2dev-specific code // TODO Remove rl2dev-specific code
use std::convert::Infallible; use std::convert::Infallible;
@ -141,7 +140,6 @@ impl Room {
self.log_request_canary = None; self.log_request_canary = None;
} }
Event::Stopped(_) => { Event::Stopped(_) => {
// TODO Remove room somewhere if this happens? If it doesn't already happen during stabilization
self.state = State::Stopped; self.state = State::Stopped;
} }
} }

View file

@ -1,4 +1,3 @@
// TODO Get rid of this macro as much as possible
macro_rules! logging_unwrap { macro_rules! logging_unwrap {
($e:expr) => { ($e:expr) => {
match $e { match $e {