mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Minor change to add braces (also testing commit notification e-mail)
git-svn-id: https://zxing.googlecode.com/svn/trunk@58 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
25d112c554
commit
8a53b9cb63
|
@ -42,7 +42,9 @@ public final class CommandLineRunner {
|
|||
if (inputFile.isDirectory()) {
|
||||
int successful = 0;
|
||||
for (File input : inputFile.listFiles()) {
|
||||
if (decode(input.toURI())) successful++;
|
||||
if (decode(input.toURI())) {
|
||||
successful++;
|
||||
}
|
||||
}
|
||||
System.out.println("Decoded " + successful + " files successfully");
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue