clippy fixes

This commit is contained in:
Stephan Dilly 2021-06-07 23:50:35 +02:00
parent 8032c35902
commit 84488855fe
2 changed files with 2 additions and 2 deletions

View file

@ -694,7 +694,7 @@ impl App {
} }
} }
Action::ForcePush(branch, force) => { Action::ForcePush(branch, force) => {
self.queue.push(InternalEvent::Push(branch, force)) self.queue.push(InternalEvent::Push(branch, force));
} }
Action::PullMerge { rebase, .. } => { Action::PullMerge { rebase, .. } => {
self.pull_popup.try_conflict_free_merge(rebase); self.pull_popup.try_conflict_free_merge(rebase);

View file

@ -347,7 +347,7 @@ impl Status {
AsyncGitNotification::Push AsyncGitNotification::Push
| AsyncGitNotification::Fetch | AsyncGitNotification::Fetch
| AsyncGitNotification::CommitFiles => { | AsyncGitNotification::CommitFiles => {
self.branch_compare() self.branch_compare();
} }
_ => (), _ => (),
} }