Skip to content

Commit

Permalink
Remove unused actor message
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <[email protected]>
  • Loading branch information
SUPERCILEX committed Jul 24, 2024
1 parent 14dd8c6 commit f14180d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion client-sdk/api.golden
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ pub clipboard_history_client_sdk::ui_actor::Message::EntryDetails::id: u64
pub clipboard_history_client_sdk::ui_actor::Message::EntryDetails::result: core::result::Result<clipboard_history_client_sdk::ui_actor::DetailedEntry, clipboard_history_core::Error>
pub clipboard_history_client_sdk::ui_actor::Message::Error(clipboard_history_client_sdk::ui_actor::CommandError)
pub clipboard_history_client_sdk::ui_actor::Message::FatalDbOpen(clipboard_history_core::Error)
pub clipboard_history_client_sdk::ui_actor::Message::FatalServerConnect(clipboard_history_client_sdk::ClientError)
pub clipboard_history_client_sdk::ui_actor::Message::FavoriteChange(u64)
pub clipboard_history_client_sdk::ui_actor::Message::LoadedFirstPage
pub clipboard_history_client_sdk::ui_actor::Message::LoadedFirstPage::default_focused_id: core::option::Option<u64>
Expand Down
1 change: 0 additions & 1 deletion client-sdk/src/ui_actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ pub enum Command {
#[derive(Debug)]
pub enum Message {
FatalDbOpen(CoreError),
FatalServerConnect(ClientError),
Error(CommandError),
LoadedFirstPage {
entries: Box<[UiEntry]>,
Expand Down
1 change: 0 additions & 1 deletion egui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ fn handle_message(
) {
match message {
Message::FatalDbOpen(e) => *fatal_error = Some(e.into()),
Message::FatalServerConnect(e) => *fatal_error = Some(e),
Message::Error(e) => *last_error = Some(e),
Message::LoadedFirstPage {
entries,
Expand Down
1 change: 0 additions & 1 deletion tui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ fn handle_message(
} = ui;
match message {
Message::FatalDbOpen(e) => return Err(e)?,
Message::FatalServerConnect(e) => return Err(e)?,
Message::Error(e) => return Err(e),
Message::LoadedFirstPage {
entries: new_entries,
Expand Down

0 comments on commit f14180d

Please sign in to comment.