aboutsummaryrefslogtreecommitdiff
path: root/config/suppressions.xml
diff options
context:
space:
mode:
authorAndrei Selkin <andreyselkin@gmail.com>2016-06-10 20:35:40 +0300
committerRoman Ivanov <romani@users.noreply.github.com>2016-06-10 10:35:40 -0700
commit36a0df872e124bf53ac8d63d95b3b3d1a8c2ec74 (patch)
tree5fba80ef85e629fa75335bbd4d72179a53f76ff8 /config/suppressions.xml
parent4238be6e8da64ef1f83de87c211702d123fa72e6 (diff)
downloadcheckstyle-36a0df872e124bf53ac8d63d95b3b3d1a8c2ec74.tar.gz
Issue #3142: Add proper support for generics in VisibilityModifierCheck (#3247)
Diffstat (limited to 'config/suppressions.xml')
-rw-r--r--config/suppressions.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/suppressions.xml b/config/suppressions.xml
index 11ecd0a1a..2eca0a12b 100644
--- a/config/suppressions.xml
+++ b/config/suppressions.xml
@@ -123,6 +123,8 @@
<suppress checks="MethodCount" files="[\\/]JavadocMethodCheck.java$"/>
<!-- Apart from a complex logic there is a lot of small methods for a better readability. -->
<suppress checks="MethodCount" files="[\\/]CommentsIndentationCheck.java$"/>
+ <!--VisibilityModifierCheck has 7 options which require 7 additional methods (setters)-->
+ <suppress checks="MethodCount" files="[\\/]VisibilityModifierCheck.java$"/>
<!-- getDetails() method - huge Switch, it has to be monolithic -->
<suppress checks="ExecutableStatementCount" files="RightCurlyCheck\.java" lines="313"/>