Author: sebb Date: Sat Mar 31 12:15:22 2012 New Revision: 1307786 URL: http://svn.apache.org/viewvc?rev=1307786&view=rev Log: Tab police
Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java?rev=1307786&r1=1307785&r2=1307786&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveInputStream.java Sat Mar 31 12:15:22 2012 @@ -317,17 +317,17 @@ public class ArArchiveInputStream extend * <p>From the FreeBSD ar(5) man page:</p> * <pre> * BSD In the BSD variant, names that are shorter than 16 - * characters and without embedded spaces are stored - * directly in this field. If a name has an embedded - * space, or if it is longer than 16 characters, then - * the string "#1/" followed by the decimal represen- - * tation of the length of the file name is placed in - * this field. The actual file name is stored immedi- - * ately after the archive header. The content of the - * archive member follows the file name. The ar_size - * field of the header (see below) will then hold the - * sum of the size of the file name and the size of - * the member. + * characters and without embedded spaces are stored + * directly in this field. If a name has an embedded + * space, or if it is longer than 16 characters, then + * the string "#1/" followed by the decimal represen- + * tation of the length of the file name is placed in + * this field. The actual file name is stored immedi- + * ately after the archive header. The content of the + * archive member follows the file name. The ar_size + * field of the header (see below) will then hold the + * sum of the size of the file name and the size of + * the member. * </pre> * * @since Apache Commons Compress 1.3 Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java?rev=1307786&r1=1307785&r2=1307786&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java Sat Mar 31 12:15:22 2012 @@ -749,7 +749,7 @@ public class DumpArchiveEntry implements CHRDEV(2), FIFO(1), UNKNOWN(15); - + private int code; private TYPE(int code) { @@ -782,7 +782,7 @@ public class DumpArchiveEntry implements WORLD_READ(00004), WORLD_WRITE(00002), WORLD_EXEC(00001); - + private int code; private PERMISSION(int code) {