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 2016/06/25 20:40:16 UTC

commons-compress git commit: Format nits.

Repository: commons-compress
Updated Branches:
  refs/heads/master b3c6bf720 -> f52ecf865


Format nits.

Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/f52ecf86
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/f52ecf86
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/f52ecf86

Branch: refs/heads/master
Commit: f52ecf8657801852c55bc9118dd953a096388ab3
Parents: b3c6bf7
Author: Gary Gregory <gg...@apache.org>
Authored: Sat Jun 25 13:40:14 2016 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Sat Jun 25 13:40:14 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/commons/compress/archivers/Lister.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/f52ecf86/src/main/java/org/apache/commons/compress/archivers/Lister.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/archivers/Lister.java b/src/main/java/org/apache/commons/compress/archivers/Lister.java
index 753ac32..19796d6 100644
--- a/src/main/java/org/apache/commons/compress/archivers/Lister.java
+++ b/src/main/java/org/apache/commons/compress/archivers/Lister.java
@@ -39,7 +39,7 @@ public final class Lister {
             usage();
             return;
         }
-        System.out.println("Analysing "+args[0]);
+        System.out.println("Analysing " + args[0]);
         final File f = new File(args[0]);
         if (!f.isFile()) {
             System.err.println(f + " doesn't exist or is a directory");
@@ -51,9 +51,9 @@ public final class Lister {
         } else {
             ais = factory.createArchiveInputStream(fis);
         }
-        System.out.println("Created "+ais.toString());
+        System.out.println("Created " + ais.toString());
         ArchiveEntry ae;
-        while((ae=ais.getNextEntry()) != null){
+        while ((ae = ais.getNextEntry()) != null) {
             System.out.println(ae.getName());
         }
         ais.close();