Remove support for groups in ReviewDb

Groups have been migrated to NoteDb. Hence we no longer need to be able
to read groups from ReviewDb.

Change-Id: Ie87c1c8e604cf1344af5291f0b369cd24af8387d
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2018-03-26 13:53:29 +02:00
parent a9aabc879c
commit 95df75fae6
49 changed files with 414 additions and 1975 deletions

View File

@@ -155,7 +155,6 @@ import com.google.gerrit.server.mail.send.ReplacePatchSetSender;
import com.google.gerrit.server.mail.send.SetAssigneeSender;
import com.google.gerrit.server.mime.FileTypeRegistry;
import com.google.gerrit.server.mime.MimeUtilFileTypeRegistry;
import com.google.gerrit.server.notedb.GroupsMigration;
import com.google.gerrit.server.notedb.NoteDbModule;
import com.google.gerrit.server.patch.PatchListCacheImpl;
import com.google.gerrit.server.patch.PatchScriptFactory;
@@ -204,14 +203,11 @@ import org.eclipse.jgit.transport.PreUploadHook;
public class GerritGlobalModule extends FactoryModule {
private final Config cfg;
private final AuthModule authModule;
private final GroupsMigration groupsMigration;
@Inject
GerritGlobalModule(
@GerritServerConfig Config cfg, AuthModule authModule, GroupsMigration groupsMigration) {
GerritGlobalModule(@GerritServerConfig Config cfg, AuthModule authModule) {
this.cfg = cfg;
this.authModule = authModule;
this.groupsMigration = groupsMigration;
}
@Override
@@ -307,7 +303,6 @@ public class GerritGlobalModule extends FactoryModule {
install(new com.google.gerrit.server.restapi.access.Module());
install(new ConfigRestModule());
install(new com.google.gerrit.server.restapi.change.Module());
install(new com.google.gerrit.server.group.Module(groupsMigration));
install(new com.google.gerrit.server.restapi.account.Module());
install(new com.google.gerrit.server.restapi.project.Module());
install(new com.google.gerrit.server.restapi.group.Module());