aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Frade <ifrade@google.com>2025-03-27 13:18:03 -0700
committerIvan Frade <ifrade@google.com>2025-04-07 20:55:13 +0000
commit324f75ea2c14f493f930f85fc91eaf5b7ce4e501 (patch)
treef8a6afd11ae3f595d90a21b32d0602ca634ff21d
parent32f659500df79cf161b512cebafd5fc82f1c4353 (diff)
downloadjgit-324f75ea2c14f493f930f85fc91eaf5b7ce4e501.tar.gz
jgit-324f75ea2c14f493f930f85fc91eaf5b7ce4e501.zip
tools/BUILD: Make AssertEqualsArgumentOrder a warning
I don't know why this check kicked in now, but it is reporting errors in many tests. Reduce to warning (order of the expected/actual is not SO dramatic). We can fix the code and upgrade to error in following changes. Change-Id: I00ad9cac6c05494a662a8848813479a931f16caf
-rw-r--r--tools/BUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/BUILD b/tools/BUILD
index 844f0049e6..379a9bd34c 100644
--- a/tools/BUILD
+++ b/tools/BUILD
@@ -54,7 +54,7 @@ errorprone_checks = [
"-Xep:ArrayHashCode:ERROR",
"-Xep:ArraysAsListPrimitiveArray:ERROR",
"-Xep:ArrayToString:ERROR",
- "-Xep:AssertEqualsArgumentOrderChecker:ERROR",
+ "-Xep:AssertEqualsArgumentOrderChecker:WARN",
"-Xep:AssertionFailureIgnored:WARN",
"-Xep:AsyncCallableReturnsNull:ERROR",
"-Xep:AsyncFunctionReturnsNull:ERROR",