checkstyle: 'protected' modifier out of order with the JLS suggestions.

internal data structures made private, no reasons to be protected

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1456827 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
index cf15392..ecae00b 100644
--- a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
+++ b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
@@ -27,7 +27,7 @@
     /**
      * set up the encoding table.
      */
-    static protected final byte[] ENCODING_TABLE =
+    private static final byte[] ENCODING_TABLE =
     {
         (byte)'0', (byte)'1', (byte)'2', (byte)'3', (byte)'4', (byte)'5', (byte)'6', (byte)'7',
         (byte)'8', (byte)'9', (byte)'A', (byte)'B', (byte)'C', (byte)'D', (byte)'E', (byte)'F'
@@ -36,7 +36,7 @@
     /**
      * set up the decoding table.
      */
-    static protected final byte[] DECODING_TABLE = new byte[128];
+    private static final byte[] DECODING_TABLE = new byte[128];
 
     static {
         // initialize the decoding table