diff --git a/.gitignore b/.gitignore index 4dfd6f268e..d1ddc33445 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ .DS_Store .gwt_work_dir /.apt_generated +/.apt_generated_tests /.bazel_path /.buckd /.classpath diff --git a/gerrit-common/src/main/java/com/google/gerrit/common/data/ContributorAgreement.java b/gerrit-common/src/main/java/com/google/gerrit/common/data/ContributorAgreement.java index 2f8755e00e..b43dbfaed1 100644 --- a/gerrit-common/src/main/java/com/google/gerrit/common/data/ContributorAgreement.java +++ b/gerrit-common/src/main/java/com/google/gerrit/common/data/ContributorAgreement.java @@ -16,7 +16,6 @@ package com.google.gerrit.common.data; import com.google.gerrit.reviewdb.client.Project; import java.util.ArrayList; -import java.util.Collections; import java.util.List; /** Portion of a {@link Project} describing a single contributor agreement. */ @@ -85,15 +84,4 @@ public class ContributorAgreement implements Comparable { public String toString() { return "ContributorAgreement[" + getName() + "]"; } - - public ContributorAgreement forUi() { - ContributorAgreement ca = new ContributorAgreement(name); - ca.description = description; - ca.accepted = Collections.emptyList(); - if (autoVerify != null) { - ca.autoVerify = new GroupReference(); - } - ca.agreementUrl = agreementUrl; - return ca; - } } diff --git a/lib/jackson/BUILD b/lib/jackson/BUILD index 9bf8f04d2f..3bc0a2be8f 100644 --- a/lib/jackson/BUILD +++ b/lib/jackson/BUILD @@ -1,7 +1,5 @@ package(default_visibility = ["//visibility:public"]) -VERSION = "2.6.6" - java_library( name = "jackson-core", data = ["//lib:LICENSE-Apache2.0"],