downgrade some FIXMEs to TODOs

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller
2020-06-10 11:09:23 +02:00
parent 5444fa940b
commit 26e78a2efb
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ impl Session {
verbose: bool,
mountpoint: &Path,
) -> Result<Self, Error> {
// FIXME: Add a buffered ReadAt layer!
// TODO: Add a buffered/caching ReadAt layer?
let file = std::fs::File::open(archive_path)?;
let file_size = file.metadata()?.len();
let reader: Reader = Arc::new(accessor::sync::FileReader::new(file));