diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2018-09-25 11:59:11 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2018-09-26 08:31:13 +0900 |
commit | 1f14c16ae459d82b14fcde504bde8d4657b57f57 (patch) | |
tree | 18c60b6096b7caaa34b8422b3f768d10666b9f20 /tools | |
parent | 6397e220a38aa224171a43a856fa63a2b9c6f8e6 (diff) | |
download | jgit-1f14c16ae459d82b14fcde504bde8d4657b57f57.tar.gz jgit-1f14c16ae459d82b14fcde504bde8d4657b57f57.zip |
Bazel: Increase severity of ExpectedExceptionChecker to ERROR
Incorrect usage of ExpectedException has been cleaned up in the
preceding commits. Increase the severity from WARN to ERROR so
that it is easier to catch any reoccurences.
Change-Id: I57decf620b37e85413bda53723f839c02b488f2c
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/BUILD b/tools/BUILD index 84da3a8df8..f8012f971d 100644 --- a/tools/BUILD +++ b/tools/BUILD @@ -36,7 +36,7 @@ java_package_configuration( "-Xep:ElementsCountedInLoop:WARN", "-Xep:EqualsHashCode:WARN", "-Xep:EqualsIncompatibleType:WARN", - "-Xep:ExpectedExceptionChecker:WARN", + "-Xep:ExpectedExceptionChecker:ERROR", "-Xep:Finally:WARN", "-Xep:FloatingPointLiteralPrecision:WARN", "-Xep:FragmentInjection:WARN", |