many warnings cleaned up

This commit is contained in:
Henry Schimke
2022-12-30 16:19:45 -06:00
parent 6a9ac8fa89
commit b383d7b0d4
48 changed files with 107 additions and 127 deletions

View File

@@ -245,7 +245,7 @@ pub trait UPCEANReader: OneDReader {
Ok(())
};
let try_result = attempt();
let _try_result = attempt();
// if let Err(Exceptions::ReaderException(_)) = try_result {
// } else if try_result.is_err() {
// return Err(try_result.err().unwrap());
@@ -564,4 +564,4 @@ impl Reader for StandInStruct {
}
}
pub(crate) const StandIn: StandInStruct = StandInStruct {};
pub(crate) const STAND_IN: StandInStruct = StandInStruct {};