cargo fmt

This commit is contained in:
Henry Schimke
2023-01-28 18:34:38 -06:00
parent e024573905
commit 9ffc5769ba
4 changed files with 29 additions and 19 deletions

View File

@@ -693,8 +693,7 @@ fn decodeECISegment(bits: &mut BitSource, result: &mut ECIStringBuilder) -> Resu
let thirdByte = bits.readBits(8)?;
result
.appendECI((firstByte - 192) * 64516 + 16383 + (secondByte - 1) * 254 + thirdByte - 1)
result.appendECI((firstByte - 192) * 64516 + 16383 + (secondByte - 1) * 254 + thirdByte - 1)
// if bits.available() < 8 {
// return Err(Exceptions::FormatException(None));