You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/05/18 00:50:47 UTC

[commons-codec] branch master updated: Formatting.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git


The following commit(s) were added to refs/heads/master by this push:
     new bc69ad9  Formatting.
bc69ad9 is described below

commit bc69ad939243c73d24105e540bde038c0acc3e03
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun May 17 20:50:42 2020 -0400

    Formatting.
---
 src/main/java/org/apache/commons/codec/cli/Digest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/cli/Digest.java b/src/main/java/org/apache/commons/codec/cli/Digest.java
index f6deb36..4e553cf 100644
--- a/src/main/java/org/apache/commons/codec/cli/Digest.java
+++ b/src/main/java/org/apache/commons/codec/cli/Digest.java
@@ -114,7 +114,7 @@ public class Digest {
             println(prefix, DigestUtils.digest(messageDigest, System.in));
             return;
         }
-        for(final String source : inputs) {
+        for (final String source : inputs) {
             final File file = new File(source);
             if (file.isFile()) {
                 println(prefix, DigestUtils.digest(messageDigest, file), source);