Skip to content

Commit

Permalink
Remove unnecessary Ok(())
Browse files Browse the repository at this point in the history
  • Loading branch information
andresovela committed Jul 15, 2023
1 parent 9ef536f commit 066d9d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions decoder/src/log/stdout_logger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ impl<'a> Printer<'a> {
LogSegment::Log => self.print_log(sink),
}?;
}
writeln!(sink)?;
Ok(())
writeln!(sink)
}

fn print_string<W: io::Write>(&self, sink: &mut W, s: &str) -> io::Result<()> {
Expand Down

0 comments on commit 066d9d1

Please sign in to comment.