Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ext {
// * Temporarily comment out "-Werror" elsewhere in this file
// * Repeatedly run `./gradlew clean compileJava` and fix all errors
// * Uncomment "-Werror"
errorprone : '2.48.0',
errorprone : '2.49.0',
// NOTE: Google Java Format requires JDK 17 or higher as of version 1.25.0.
googleJavaFormat : '1.25.2',
hashmapUtil : '0.0.1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ private boolean suppressEarlyEquals(BinaryTree topBinaryTree) {
Heuristics.Matcher matcherEqOrEquals =
new Heuristics.Matcher() {

/** Returns true if e is either "e1 != null" or "e2 != null". */
/* Returns true if e is either "e1 != null" or "e2 != null". */
private boolean isNeqNull(
ExpressionTree e, ExpressionTree e1, ExpressionTree e2) {
e = TreeUtils.withoutParens(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private enum FluentAPIGenerators {
*/
AUTO_VALUE {

/**
/*
* The qualified name of the AutoValue Builder annotation. This needs to be constructed
* dynamically due to a side effect of the shadow plugin. See {@link
* #getAutoValueBuilderCanonicalName()} for more information.
Expand Down Expand Up @@ -88,7 +88,7 @@ public boolean returnsThis(AnnotatedExecutableType t) {
return false;
}

/**
/*
* Get the qualified name of the AutoValue Builder annotation. This method constructs
* the String dynamically, to ensure it does not get rewritten due to relocation of the
* {@code "com.google"} package during the build process.
Expand Down
Loading