mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28: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) => {
|
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);
|
||||||
|
|
|
||||||
|
|
@ -347,7 +347,7 @@ impl Status {
|
||||||
AsyncGitNotification::Push
|
AsyncGitNotification::Push
|
||||||
| AsyncGitNotification::Fetch
|
| AsyncGitNotification::Fetch
|
||||||
| AsyncGitNotification::CommitFiles => {
|
| AsyncGitNotification::CommitFiles => {
|
||||||
self.branch_compare()
|
self.branch_compare();
|
||||||
}
|
}
|
||||||
_ => (),
|
_ => (),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue