mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-23 19:43:23 +00:00
Merge #5689
5689: Remove clone r=kjeremy a=Veetaha Co-authored-by: Veetaha <veetaha2@gmail.com>
This commit is contained in:
commit
eed05a95b4
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ pub fn main_loop(config: Config, connection: Connection) -> Result<()> {
|
|||
SetThreadPriority(thread, thread_priority_above_normal);
|
||||
}
|
||||
|
||||
GlobalState::new(connection.sender.clone(), config).run(connection.receiver)
|
||||
GlobalState::new(connection.sender, config).run(connection.receiver)
|
||||
}
|
||||
|
||||
enum Event {
|
||||
|
|
Loading…
Reference in a new issue