We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e0a293c + 1e3026c commit 71ff7fbCopy full SHA for 71ff7fb
crates/proc-macro-api/src/legacy_protocol/json.rs
@@ -30,6 +30,5 @@ pub fn write_json(out: &mut impl Write, msg: &str) -> io::Result<()> {
30
tracing::debug!("> {}", msg);
31
out.write_all(msg.as_bytes())?;
32
out.write_all(b"\n")?;
33
- out.flush()?;
34
- Ok(())
+ out.flush()
35
}
0 commit comments