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 2012/03/31 13:58:23 UTC

svn commit: r1307776 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveEntry.java

Author: ggregory
Date: Sat Mar 31 11:58:23 2012
New Revision: 1307776

URL: http://svn.apache.org/viewvc?rev=1307776&view=rev
Log:
Fix indent.

Modified:
    commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveEntry.java

Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveEntry.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveEntry.java?rev=1307776&r1=1307775&r2=1307776&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveEntry.java (original)
+++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/jar/JarArchiveEntry.java Sat Mar 31 11:58:23 2012
@@ -58,12 +58,12 @@ public class JarArchiveEntry extends Zip
     }
 
     public Certificate[] getCertificates() {
-            if (certificates != null) {
-                Certificate[] certs = new Certificate[certificates.length];
-                System.arraycopy(certificates, 0, certs, 0, certs.length);
-                return certs;
-            }
-            return null;
+        if (certificates != null) {
+            Certificate[] certs = new Certificate[certificates.length];
+            System.arraycopy(certificates, 0, certs, 0, certs.length);
+            return certs;
+        }
+        return null;
     }
 
     @Override