Remove unneeded newlines
Conventionally we only put a single newline between types, impl blocks, and functions.
This commit is contained in:
parent
28853fd3cc
commit
08e55bc4f1
|
@ -86,14 +86,12 @@ impl std::error::Error for Error {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
impl From<io::Error> for Error {
|
||||
fn from(io: io::Error) -> Self {
|
||||
Error::Io(io)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// a computed or read block filter
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub struct BlockFilter {
|
||||
|
@ -208,7 +206,6 @@ impl<'a, W: io::Write> BlockFilterWriter<'a, W> {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/// Reads and interpret a block filter
|
||||
pub struct BlockFilterReader {
|
||||
reader: GCSFilterReader
|
||||
|
@ -242,7 +239,6 @@ impl BlockFilterReader {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/// Golomb-Rice encoded filter reader
|
||||
pub struct GCSFilterReader {
|
||||
filter: GCSFilter,
|
||||
|
|
Loading…
Reference in New Issue