mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
remove useless loop
This commit is contained in:
parent
b518fd0ef9
commit
535bd7ccf7
1 changed files with 21 additions and 24 deletions
|
@ -72,7 +72,6 @@ fn main_inner() -> Result<()> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn initialize(io: &mut Io) -> Result<()> {
|
fn initialize(io: &mut Io) -> Result<()> {
|
||||||
loop {
|
|
||||||
match io.recv()? {
|
match io.recv()? {
|
||||||
RawMsg::Notification(n) =>
|
RawMsg::Notification(n) =>
|
||||||
bail!("expected initialize request, got {:?}", n),
|
bail!("expected initialize request, got {:?}", n),
|
||||||
|
@ -98,8 +97,6 @@ fn initialize(io: &mut Io) -> Result<()> {
|
||||||
}
|
}
|
||||||
_ => bail!("expected initialized notification"),
|
_ => bail!("expected initialized notification"),
|
||||||
}
|
}
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
initialized(io)
|
initialized(io)
|
||||||
|
|
Loading…
Reference in a new issue