Author: bodewig
Date: Tue Mar 17 12:14:17 2009
New Revision: 755214

URL: http://svn.apache.org/viewvc?rev=755214&view=rev
Log:
whitespace

Modified:
    
commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java

Modified: 
commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java?rev=755214&r1=755213&r2=755214&view=diff
==============================================================================
--- 
commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java
 (original)
+++ 
commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java
 Tue Mar 17 12:14:17 2009
@@ -213,8 +213,8 @@
                     char ch2 = fileName.charAt(1);
 
                     if (ch2 == ':'
-                            && ((ch1 >= 'a' && ch1 <= 'z')
-                                || (ch1 >= 'A' && ch1 <= 'Z'))) {
+                        && ((ch1 >= 'a' && ch1 <= 'z')
+                            || (ch1 >= 'A' && ch1 <= 'Z'))) {
                         fileName = fileName.substring(2);
                     }
                 }
@@ -515,7 +515,7 @@
      */
     public boolean isGNULongNameEntry() {
         return linkFlag == LF_GNUTYPE_LONGNAME
-                           && name.toString().equals(GNU_LONGLINK);
+            && name.toString().equals(GNU_LONGLINK);
     }
 
     /**


Reply via email to