diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-04-29 00:11:46 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-04-29 15:05:32 +0200 |
commit | f1a9d25f40c30c8c0fc53cf1c811bde66abf11f0 (patch) | |
tree | e44d908b6fff95d01c0cb328f01d9716003d6d51 /tools | |
parent | 8a8e45dd27ff4b7cad0e2624e1b2bcce8b72ef72 (diff) | |
download | jgit-f1a9d25f40c30c8c0fc53cf1c811bde66abf11f0.tar.gz jgit-f1a9d25f40c30c8c0fc53cf1c811bde66abf11f0.zip |
[errorprone] Fix pattern see UnusedVariable
See https://errorprone.info/bugpattern/UnusedVariable
Change-Id: I75d7602af31ed7d3264d2beab2d159cfbf29e7cb
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 2c7fd42732..90db119b4c 100644 --- a/tools/BUILD +++ b/tools/BUILD @@ -407,7 +407,7 @@ java_package_configuration( "-Xep:UnusedException:ERROR", "-Xep:UnusedMethod:WARN", "-Xep:UnusedNestedClass:ERROR", - "-Xep:UnusedVariable:WARN", + "-Xep:UnusedVariable:ERROR", "-Xep:URLEqualsHashCode:ERROR", "-Xep:UseBinds:ERROR", "-Xep:UseCorrectAssertInTests:WARN", |