You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2013/08/07 15:04:10 UTC

svn commit: r1511292 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java

Author: ebourg
Date: Wed Aug  7 13:04:10 2013
New Revision: 1511292

URL: http://svn.apache.org/r1511292
Log:
Removed the final modifier on the private methods

Modified:
    commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java

Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java?rev=1511292&r1=1511291&r2=1511292&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java (original)
+++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/arj/ArjArchiveInputStream.java Wed Aug  7 13:04:10 2013
@@ -91,18 +91,18 @@ public class ArjArchiveInputStream exten
         }
     }
     
-    private static final void debug(final String message) {
+    private static void debug(final String message) {
         if (DEBUG) {
             System.out.println(message);
         }
     }
     
-    private static final int read16(final DataInputStream in) throws IOException {
+    private static int read16(final DataInputStream in) throws IOException {
         final int value = in.readUnsignedShort();
         return Integer.reverseBytes(value) >>> 16;
     }
     
-    private final String readString(final DataInputStream in) throws IOException {
+    private String readString(final DataInputStream in) throws IOException {
         final ByteArrayOutputStream buffer = new ByteArrayOutputStream();
         int nextByte;
         while ((nextByte = in.readUnsignedByte()) != 0) {