QPD no longer has a magic number
FileUploadBase uses a sensible inline conditional

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1458057 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/checkstyle/checkstyle-suppressions.xml b/src/checkstyle/checkstyle-suppressions.xml
index ddacad7..37623e0 100644
--- a/src/checkstyle/checkstyle-suppressions.xml
+++ b/src/checkstyle/checkstyle-suppressions.xml
@@ -19,6 +19,8 @@
    limitations under the License.
 -->
 <suppressions>
-  <suppress checks="MagicNumber" files="(Base64|QuotedPrintable)Decoder.java" lines="0-9999"/>
+  <suppress checks="MagicNumber" files="Base64Decoder.java" lines="0-9999"/>
+  <!-- This inline conditional is easier to read than the alternative -->
+  <suppress checks="AvoidInlineConditionals" files="FileUploadBase.java" lines="950-960"/>
   <suppress checks="[a-zA-Z0-9]*" files=".+\.properties" />
 </suppressions>