Skip to content

Commit

Permalink
Excavator: Upgrades Baseline to the latest version (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot authored and bulldozer-bot[bot] committed Jan 9, 2020
1 parent 97bf076 commit 0661d23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ buildscript {
classpath 'com.netflix.nebula:gradle-info-plugin:5.2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.netflix.nebula:nebula-publishing-plugin:14.1.1'
classpath 'com.palantir.baseline:gradle-baseline-java:2.45.1'
classpath 'com.palantir.baseline:gradle-baseline-java:2.47.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:1.13.1'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:0.12.2'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static Set<JavaFile> generateErrorTypes(TypeMapper typeMapper, List<Error
private static Map<String, Map<ErrorNamespace, List<ErrorDefinition>>> splitErrorDefsByNamespace(
List<ErrorDefinition> errorTypeNameToDef) {
Map<String, Map<ErrorNamespace, List<ErrorDefinition>>> pkgToNamespacedErrorDefs = new HashMap<>();
errorTypeNameToDef.stream().forEach(errorDef -> {
errorTypeNameToDef.forEach(errorDef -> {
String errorPkg = errorDef.getErrorName().getPackage();
pkgToNamespacedErrorDefs.computeIfAbsent(errorPkg, key -> new HashMap<>());

Expand Down

0 comments on commit 0661d23

Please sign in to comment.