We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
THROWS_METHOD_THROWS_RUNTIMEEXCEPTION
1 parent df15c88 commit 8e646eaCopy full SHA for 8e646ea
2 files changed
lib/build.gradle
@@ -139,6 +139,7 @@ dependencies {
139
spotbugs {
140
// LOW|MEDIUM|DEFAULT|HIGH (low = sensitive to even minor mistakes).
141
reportLevel = com.github.spotbugs.snom.Confidence.valueOf('LOW')
142
+ excludeFilter = file("spotbugs-exclude.xml")
143
}
144
145
apply from: rootProject.file('gradle/special-tests.gradle')
lib/spotbugs-exclude.xml
@@ -0,0 +1,5 @@
1
+<FindBugsFilter>
2
+ <Match>
3
+ <Bug pattern="THROWS_METHOD_THROWS_RUNTIMEEXCEPTION"/>
4
+ </Match>
5
+</FindBugsFilter>
0 commit comments