diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2024-04-28 21:28:30 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2024-04-28 21:28:30 +0200 |
commit | d8cb554f25925f3ea2d66815fdaa59efa1867ae3 (patch) | |
tree | c841deb820a5ee3f096de5e03b38e0c8ed7cce9a /tools | |
parent | 6521c647b7073a9423749b1896302e3e0975d649 (diff) | |
download | jgit-d8cb554f25925f3ea2d66815fdaa59efa1867ae3.tar.gz jgit-d8cb554f25925f3ea2d66815fdaa59efa1867ae3.zip |
[errorprone] Fix UnnecessaryParentheses errors
See https://errorprone.info/bugpattern/UnnecessaryParentheses
Change-Id: I783fd24286ec1bd55efbf21d05758465f4af87ee
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 c2b2366c49..dbec43b7fa 100644 --- a/tools/BUILD +++ b/tools/BUILD @@ -396,7 +396,7 @@ java_package_configuration( "-Xep:UnnecessaryLambda:ERROR", "-Xep:UnnecessaryMethodInvocationMatcher:ERROR", "-Xep:UnnecessaryMethodReference:ERROR", - "-Xep:UnnecessaryParentheses:WARN", + "-Xep:UnnecessaryParentheses:ERROR", "-Xep:UnnecessaryTypeArgument:ERROR", "-Xep:UnrecognisedJavadocTag:ERROR", "-Xep:UnsafeFinalization:ERROR", |