Remove resolved todos

This commit is contained in:
Joscha 2023-04-29 15:46:05 +02:00
parent 01c2934fd5
commit 325c5e6e5c
4 changed files with 0 additions and 4 deletions

View file

@ -321,7 +321,6 @@ pub struct TreeCursor {
// TODO Bindings inspired by vim's ()/[]/{} bindings? // TODO Bindings inspired by vim's ()/[]/{} bindings?
} }
// TODO Split up in "message", "nicklist", "room"?
#[derive(Debug, Deserialize, Document, KeyGroup)] #[derive(Debug, Deserialize, Document, KeyGroup)]
pub struct TreeAction { pub struct TreeAction {
/// Reply to message, inline if possible. /// Reply to message, inline if possible.

View file

@ -24,7 +24,6 @@ pub fn derive_document(input: proc_macro::TokenStream) -> proc_macro::TokenStrea
} }
} }
// TODO Derive Default as well
#[proc_macro_derive(KeyGroup)] #[proc_macro_derive(KeyGroup)]
pub fn derive_group(input: proc_macro::TokenStream) -> proc_macro::TokenStream { pub fn derive_group(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
let input = parse_macro_input!(input as DeriveInput); let input = parse_macro_input!(input as DeriveInput);

View file

@ -12,7 +12,6 @@
// TODO Enable warn(unreachable_pub)? // TODO Enable warn(unreachable_pub)?
// TODO Remove unnecessary Debug impls and compare compile times // TODO Remove unnecessary Debug impls and compare compile times
// TODO Time zones other than UTC // TODO Time zones other than UTC
// TODO Fix password room auth
// TODO Invoke external notification command? // TODO Invoke external notification command?
mod euph; mod euph;

View file

@ -113,7 +113,6 @@ impl<Id> Blocks<Id> {
} }
} }
// TODO Remove index from search result
pub fn find_block(&self, id: &Id) -> Option<(Range<i32>, &Block<Id>)> pub fn find_block(&self, id: &Id) -> Option<(Range<i32>, &Block<Id>)>
where where
Id: Eq, Id: Eq,