Skip to content

Commit

Permalink
Use Error Prone 2.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst authored Apr 28, 2024
1 parent 2890be7 commit 7051bda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ext {
hashmapUtil : '0.0.1',
reflectionUtil : '1.1.3',
plumeUtil : '1.9.3',
errorprone : '2.26.1',
errorprone : '2.27.0',
]
}

Expand Down Expand Up @@ -464,6 +464,8 @@ allprojects { currentProj ->
'-Xep:ExtendsObject:OFF',
// The Checker Framework is the only nullness tool we care about.
'-Xep:NullableWildcard:OFF',
// In the visitor pattern, it is natural to forward a Void reference.
'-Xep:VoidUsed:OFF',
// -Werror halts the build if Error Prone issues a warning, which ensures that
// the errors get fixed. On the downside, Error Prone (or maybe the compiler?)
// stops as soon as it issues one warning, rather than outputting them all.
Expand Down

0 comments on commit 7051bda

Please sign in to comment.