Skip to content

Commit

Permalink
Fixed clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre committed Jan 10, 2025
1 parent 91e3184 commit dabf45f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions extensions/prost/private/tests/services/echo/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ fn match_for_io_error(err_status: &Status) -> Option<&std::io::Error> {
}
}

err = match err.source() {
Some(err) => err,
None => return None,
};
err = err.source()?;
}
}

Expand Down

0 comments on commit dabf45f

Please sign in to comment.