Apply linter fixes
This commit is contained in:
parent
6c1bd78a6b
commit
10dab71377
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
use criterion::{BenchmarkId, Criterion, Throughput};
|
|
||||||
use criterion::{criterion_group, criterion_main};
|
use criterion::{criterion_group, criterion_main};
|
||||||
|
use criterion::{BenchmarkId, Criterion, Throughput};
|
||||||
|
|
||||||
use std::io::{Cursor, Read, Write};
|
use std::io::{Cursor, Read, Write};
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ fn read_entry(bench: &mut Criterion) {
|
||||||
let n = file.read(&mut buf).unwrap();
|
let n = file.read(&mut buf).unwrap();
|
||||||
total_bytes += n;
|
total_bytes += n;
|
||||||
if n == 0 {
|
if n == 0 {
|
||||||
return total_bytes
|
return total_bytes;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue