Remove ! from todo!() in comments (#8643)

This practice makes it difficult to locate todo!s in my code when I'm
working. Let's take out the bang if we want to keep doing this.

Release Notes:

- N/A
This commit is contained in:
Nathan Sobo 2024-02-29 18:19:05 -07:00 committed by GitHub
parent dab886f479
commit 4cc4f08a53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 116 additions and 116 deletions

View file

@ -141,19 +141,19 @@ impl Platform for LinuxPlatform {
self.inner.loop_signal.stop();
}
//todo!(linux)
// todo(linux)
fn restart(&self) {}
//todo!(linux)
// todo(linux)
fn activate(&self, ignoring_other_apps: bool) {}
//todo!(linux)
// todo(linux)
fn hide(&self) {}
//todo!(linux)
// todo(linux)
fn hide_other_apps(&self) {}
//todo!(linux)
// todo(linux)
fn unhide_other_apps(&self) {}
fn displays(&self) -> Vec<Rc<dyn PlatformDisplay>> {
@ -164,7 +164,7 @@ impl Platform for LinuxPlatform {
self.client.display(id)
}
//todo!(linux)
// todo(linux)
fn active_window(&self) -> Option<AnyWindowHandle> {
None
}
@ -328,7 +328,7 @@ impl Platform for LinuxPlatform {
unimplemented!()
}
//todo!(linux)
// todo(linux)
fn set_menus(&self, menus: Vec<Menu>, keymap: &Keymap) {}
fn local_timezone(&self) -> UtcOffset {
@ -339,18 +339,18 @@ impl Platform for LinuxPlatform {
unimplemented!()
}
//todo!(linux)
// todo(linux)
fn set_cursor_style(&self, style: CursorStyle) {}
//todo!(linux)
// todo(linux)
fn should_auto_hide_scrollbars(&self) -> bool {
false
}
//todo!(linux)
// todo(linux)
fn write_to_clipboard(&self, item: ClipboardItem) {}
//todo!(linux)
// todo(linux)
fn read_from_clipboard(&self) -> Option<ClipboardItem> {
None
}