Rename reviewdb package to entities Change-Id: I75fbf183c882b6a1c41a7cc35a34350df383e111
diff --git a/java/com/googlesource/gerrit/plugins/supermanifest/ConfigEntry.java b/java/com/googlesource/gerrit/plugins/supermanifest/ConfigEntry.java index 543de61..4f3ad51 100644 --- a/java/com/googlesource/gerrit/plugins/supermanifest/ConfigEntry.java +++ b/java/com/googlesource/gerrit/plugins/supermanifest/ConfigEntry.java
@@ -15,9 +15,9 @@ package com.googlesource.gerrit.plugins.supermanifest; import static com.google.common.base.Strings.nullToEmpty; -import static com.google.gerrit.reviewdb.client.RefNames.REFS_HEADS; +import static com.google.gerrit.entities.RefNames.REFS_HEADS; -import com.google.gerrit.reviewdb.client.Project; +import com.google.gerrit.entities.Project; import java.net.URI; import java.net.URISyntaxException; import java.util.Objects;
diff --git a/java/com/googlesource/gerrit/plugins/supermanifest/JiriManifestParser.java b/java/com/googlesource/gerrit/plugins/supermanifest/JiriManifestParser.java index d91a2df..ac20e4e 100644 --- a/java/com/googlesource/gerrit/plugins/supermanifest/JiriManifestParser.java +++ b/java/com/googlesource/gerrit/plugins/supermanifest/JiriManifestParser.java
@@ -14,9 +14,9 @@ package com.googlesource.gerrit.plugins.supermanifest; -import static com.google.gerrit.reviewdb.client.RefNames.REFS_HEADS; +import static com.google.gerrit.entities.RefNames.REFS_HEADS; -import com.google.gerrit.reviewdb.client.Project; +import com.google.gerrit.entities.Project; import com.googlesource.gerrit.plugins.supermanifest.SuperManifestRefUpdatedListener.GerritRemoteReader; import java.io.ByteArrayInputStream; import java.io.IOException;
diff --git a/java/com/googlesource/gerrit/plugins/supermanifest/JiriUpdater.java b/java/com/googlesource/gerrit/plugins/supermanifest/JiriUpdater.java index 7c85937..85f4429 100644 --- a/java/com/googlesource/gerrit/plugins/supermanifest/JiriUpdater.java +++ b/java/com/googlesource/gerrit/plugins/supermanifest/JiriUpdater.java
@@ -1,6 +1,6 @@ package com.googlesource.gerrit.plugins.supermanifest; -import static com.google.gerrit.reviewdb.client.RefNames.REFS_HEADS; +import static com.google.gerrit.entities.RefNames.REFS_HEADS; import static java.nio.charset.StandardCharsets.UTF_8; import com.google.common.collect.Lists;
diff --git a/java/com/googlesource/gerrit/plugins/supermanifest/RepoUpdater.java b/java/com/googlesource/gerrit/plugins/supermanifest/RepoUpdater.java index 89e2886..99ea16e 100644 --- a/java/com/googlesource/gerrit/plugins/supermanifest/RepoUpdater.java +++ b/java/com/googlesource/gerrit/plugins/supermanifest/RepoUpdater.java
@@ -14,7 +14,7 @@ package com.googlesource.gerrit.plugins.supermanifest; -import static com.google.gerrit.reviewdb.client.RefNames.REFS_HEADS; +import static com.google.gerrit.entities.RefNames.REFS_HEADS; import com.googlesource.gerrit.plugins.supermanifest.SuperManifestRefUpdatedListener.GerritRemoteReader; import java.io.ByteArrayInputStream;
diff --git a/java/com/googlesource/gerrit/plugins/supermanifest/SuperManifestRefUpdatedListener.java b/java/com/googlesource/gerrit/plugins/supermanifest/SuperManifestRefUpdatedListener.java index 932f3f5..c376050 100644 --- a/java/com/googlesource/gerrit/plugins/supermanifest/SuperManifestRefUpdatedListener.java +++ b/java/com/googlesource/gerrit/plugins/supermanifest/SuperManifestRefUpdatedListener.java
@@ -14,10 +14,11 @@ package com.googlesource.gerrit.plugins.supermanifest; -import static com.google.gerrit.reviewdb.client.RefNames.REFS_HEADS; +import static com.google.gerrit.entities.RefNames.REFS_HEADS; import com.google.common.annotations.VisibleForTesting; import com.google.common.flogger.FluentLogger; +import com.google.gerrit.entities.Project; import com.google.gerrit.extensions.annotations.PluginName; import com.google.gerrit.extensions.api.projects.BranchInput; import com.google.gerrit.extensions.config.DownloadScheme; @@ -26,7 +27,6 @@ import com.google.gerrit.extensions.restapi.AuthException; import com.google.gerrit.extensions.restapi.Response; import com.google.gerrit.extensions.restapi.RestModifyView; -import com.google.gerrit.reviewdb.client.Project; import com.google.gerrit.server.GerritPersonIdent; import com.google.gerrit.server.IdentifiedUser; import com.google.gerrit.server.config.AllProjectsName;
diff --git a/javatests/com/googlesource/gerrit/plugins/supermanifest/JiriSuperManifestIT.java b/javatests/com/googlesource/gerrit/plugins/supermanifest/JiriSuperManifestIT.java index 46e0cc1..f1d71c7 100644 --- a/javatests/com/googlesource/gerrit/plugins/supermanifest/JiriSuperManifestIT.java +++ b/javatests/com/googlesource/gerrit/plugins/supermanifest/JiriSuperManifestIT.java
@@ -25,13 +25,13 @@ import com.google.gerrit.acceptance.PushOneCommit.Result; import com.google.gerrit.acceptance.TestPlugin; import com.google.gerrit.acceptance.testsuite.project.ProjectOperations; +import com.google.gerrit.entities.Project; +import com.google.gerrit.entities.RefNames; import com.google.gerrit.extensions.api.projects.BranchApi; import com.google.gerrit.extensions.config.DownloadScheme; import com.google.gerrit.extensions.registration.DynamicMap; import com.google.gerrit.extensions.registration.PrivateInternals_DynamicMapImpl; import com.google.gerrit.extensions.restapi.ResourceNotFoundException; -import com.google.gerrit.reviewdb.client.Project; -import com.google.gerrit.reviewdb.client.RefNames; import com.google.inject.Inject; import com.google.inject.util.Providers; import java.net.URI;
diff --git a/javatests/com/googlesource/gerrit/plugins/supermanifest/RepoSuperManifestIT.java b/javatests/com/googlesource/gerrit/plugins/supermanifest/RepoSuperManifestIT.java index 2db98ec..698da79 100644 --- a/javatests/com/googlesource/gerrit/plugins/supermanifest/RepoSuperManifestIT.java +++ b/javatests/com/googlesource/gerrit/plugins/supermanifest/RepoSuperManifestIT.java
@@ -25,10 +25,10 @@ import com.google.gerrit.acceptance.RestResponse; import com.google.gerrit.acceptance.TestPlugin; import com.google.gerrit.acceptance.testsuite.project.ProjectOperations; +import com.google.gerrit.entities.Project; +import com.google.gerrit.entities.RefNames; import com.google.gerrit.extensions.api.projects.BranchApi; import com.google.gerrit.extensions.restapi.ResourceNotFoundException; -import com.google.gerrit.reviewdb.client.Project; -import com.google.gerrit.reviewdb.client.RefNames; import com.google.inject.Inject; import java.net.URI; import java.util.Arrays;