Skip to content

Commit

Permalink
Excavator: Upgrades Baseline to the latest version (#2029)
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot authored Jan 10, 2022
1 parent 93f3253 commit c33a21c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@

package com.palantir.baseline.errorprone;

import com.google.auto.service.AutoService;
import com.google.common.collect.Iterables;
import com.google.errorprone.BugPattern;
import com.google.errorprone.BugPattern.SeverityLevel;
import com.google.errorprone.VisitorState;
import com.google.errorprone.bugpatterns.BugChecker;
import com.sun.tools.javac.code.Symbol.MethodSymbol;
import com.sun.tools.javac.code.Type;
import com.sun.tools.javac.code.Types;
Expand All @@ -28,6 +30,7 @@
/**
* Warns that users should not have a {@link java.util.regex.Pattern} as a key to a Set or Map.
*/
@AutoService(BugChecker.class)
@BugPattern(
name = "DangerousIdentityKey",
summary = "Key type does not override equals() and hashCode, so comparisons will be done on"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
classpath 'com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.6.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:2.5.0'
classpath 'com.gradle.publish:plugin-publish-plugin:0.19.0'
classpath 'com.palantir.baseline:gradle-baseline-java:4.55.0'
classpath 'com.palantir.baseline:gradle-baseline-java:4.56.0'
classpath 'com.palantir.javaformat:gradle-palantir-java-format:2.9.0'
}
}
Expand Down

0 comments on commit c33a21c

Please sign in to comment.