mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 17:08:21 +00:00
clippy fixes
This commit is contained in:
parent
8032c35902
commit
84488855fe
2 changed files with 2 additions and 2 deletions
|
|
@ -694,7 +694,7 @@ impl App {
|
|||
}
|
||||
}
|
||||
Action::ForcePush(branch, force) => {
|
||||
self.queue.push(InternalEvent::Push(branch, force))
|
||||
self.queue.push(InternalEvent::Push(branch, force));
|
||||
}
|
||||
Action::PullMerge { rebase, .. } => {
|
||||
self.pull_popup.try_conflict_free_merge(rebase);
|
||||
|
|
|
|||
|
|
@ -347,7 +347,7 @@ impl Status {
|
|||
AsyncGitNotification::Push
|
||||
| AsyncGitNotification::Fetch
|
||||
| AsyncGitNotification::CommitFiles => {
|
||||
self.branch_compare()
|
||||
self.branch_compare();
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue