Skip to content

Commit

Permalink
Remove redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
flanglet committed Dec 4, 2023
1 parent c946dfb commit b7dd4e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/main/java/kanzi/app/BlockCompressor.java
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ else if (STDOUT.equalsIgnoreCase(outputName))
if (read != 0)
printOut("Compression ratio: "+String.format("%1$.6f", (this.cos.getWritten() / (float) read)), true);
}
else if (verbosity == 1)
else
{
if (read == 0)
{
Expand Down

0 comments on commit b7dd4e3

Please sign in to comment.