remove useless loop

This commit is contained in:
Aleksey Kladov 2018-08-12 22:23:44 +03:00
parent b518fd0ef9
commit 535bd7ccf7

View File

@ -72,7 +72,6 @@ fn main_inner() -> Result<()> {
}
fn initialize(io: &mut Io) -> Result<()> {
loop {
match io.recv()? {
RawMsg::Notification(n) =>
bail!("expected initialize request, got {:?}", n),
@ -98,8 +97,6 @@ fn initialize(io: &mut Io) -> Result<()> {
}
_ => bail!("expected initialized notification"),
}
break;
}
}
}
initialized(io)