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

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1456829 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 5e3fe35..4186d43 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
@@ -46,7 +46,7 @@
     }
 
     // default number of characters we will write per line.
-    static private final int DEFAULT_CHARS_PER_LINE = 76;
+    private static final int DEFAULT_CHARS_PER_LINE = 76;
 
     // the output stream we're wrapped around
     protected OutputStream out;