Remove ChangeData factory method used only by old index schemas
Change-Id: I6d004dd0a5ae23d654d073cc7e876e00ebb031c0
diff --git a/gerrit-elasticsearch/src/main/java/com/google/gerrit/elasticsearch/ElasticChangeIndex.java b/gerrit-elasticsearch/src/main/java/com/google/gerrit/elasticsearch/ElasticChangeIndex.java
index 82b37cf..cbc0640 100644
--- a/gerrit-elasticsearch/src/main/java/com/google/gerrit/elasticsearch/ElasticChangeIndex.java
+++ b/gerrit-elasticsearch/src/main/java/com/google/gerrit/elasticsearch/ElasticChangeIndex.java
@@ -14,6 +14,7 @@
package com.google.gerrit.elasticsearch;
+import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.gerrit.server.index.change.ChangeField.APPROVAL_CODEC;
import static com.google.gerrit.server.index.change.ChangeField.CHANGE_CODEC;
import static com.google.gerrit.server.index.change.ChangeField.PATCH_SET_CODEC;
@@ -272,10 +273,8 @@
if (c == null) {
int id = source.get(ChangeField.LEGACY_ID.getName()).getAsInt();
- String projectName = source.get(ChangeField.PROJECT.getName()).getAsString();
- if (projectName == null) {
- return changeDataFactory.createOnlyWhenNoteDbDisabled(db.get(), new Change.Id(id));
- }
+ // IndexUtils#changeFields ensures either CHANGE or PROJECT is always present.
+ String projectName = checkNotNull(source.get(ChangeField.PROJECT.getName()).getAsString());
return changeDataFactory.create(
db.get(), new Project.NameKey(projectName), new Change.Id(id));
}
diff --git a/gerrit-lucene/src/main/java/com/google/gerrit/lucene/LuceneChangeIndex.java b/gerrit-lucene/src/main/java/com/google/gerrit/lucene/LuceneChangeIndex.java
index c97ffc5..348989c 100644
--- a/gerrit-lucene/src/main/java/com/google/gerrit/lucene/LuceneChangeIndex.java
+++ b/gerrit-lucene/src/main/java/com/google/gerrit/lucene/LuceneChangeIndex.java
@@ -429,14 +429,9 @@
} else {
IndexableField f = Iterables.getFirst(doc.get(idFieldName), null);
Change.Id id = new Change.Id(f.numericValue().intValue());
- IndexableField project = Iterables.getFirst(doc.get(PROJECT.getName()), null);
- if (project == null) {
- // Old schema without project field: we can safely assume NoteDb is
- // disabled.
- cd = changeDataFactory.createOnlyWhenNoteDbDisabled(db.get(), id);
- } else {
- cd = changeDataFactory.create(db.get(), new Project.NameKey(project.stringValue()), id);
- }
+ // IndexUtils#changeFields ensures either CHANGE or PROJECT is always present.
+ IndexableField project = doc.get(PROJECT.getName()).iterator().next();
+ cd = changeDataFactory.create(db.get(), new Project.NameKey(project.stringValue()), id);
}
if (fields.contains(PATCH_SET_FIELD)) {
diff --git a/gerrit-server/src/main/java/com/google/gerrit/server/query/change/ChangeData.java b/gerrit-server/src/main/java/com/google/gerrit/server/query/change/ChangeData.java
index af23b8d..cfe580e 100644
--- a/gerrit-server/src/main/java/com/google/gerrit/server/query/change/ChangeData.java
+++ b/gerrit-server/src/main/java/com/google/gerrit/server/query/change/ChangeData.java
@@ -286,9 +286,6 @@
ChangeData create(ReviewDb db, ChangeNotes cn);
ChangeData create(ReviewDb db, ChangeControl c);
-
- // TODO(dborowitz): Remove when deleting index schemas <27.
- ChangeData createOnlyWhenNoteDbDisabled(ReviewDb db, Change.Id id);
}
/**
@@ -550,52 +547,6 @@
project = notes.getProjectName();
}
- @AssistedInject
- private ChangeData(
- GitRepositoryManager repoManager,
- ChangeControl.GenericFactory changeControlFactory,
- IdentifiedUser.GenericFactory userFactory,
- AccountCache accountCache,
- Accounts accounts,
- Emails emails,
- ProjectCache projectCache,
- MergeUtil.Factory mergeUtilFactory,
- ChangeNotes.Factory notesFactory,
- ApprovalsUtil approvalsUtil,
- ChangeMessagesUtil cmUtil,
- CommentsUtil commentsUtil,
- PatchSetUtil psUtil,
- PatchListCache patchListCache,
- NotesMigration notesMigration,
- MergeabilityCache mergeabilityCache,
- @Nullable StarredChangesUtil starredChangesUtil,
- @Assisted ReviewDb db,
- @Assisted Change.Id id) {
- checkState(
- !notesMigration.readChanges(),
- "do not call createOnlyWhenNoteDbDisabled when NoteDb is enabled");
- this.db = db;
- this.repoManager = repoManager;
- this.changeControlFactory = changeControlFactory;
- this.userFactory = userFactory;
- this.accountCache = accountCache;
- this.accounts = accounts;
- this.emails = emails;
- this.projectCache = projectCache;
- this.mergeUtilFactory = mergeUtilFactory;
- this.notesFactory = notesFactory;
- this.approvalsUtil = approvalsUtil;
- this.cmUtil = cmUtil;
- this.commentsUtil = commentsUtil;
- this.psUtil = psUtil;
- this.patchListCache = patchListCache;
- this.notesMigration = notesMigration;
- this.mergeabilityCache = mergeabilityCache;
- this.starredChangesUtil = starredChangesUtil;
- this.legacyId = id;
- this.project = null;
- }
-
public ChangeData setLazyLoad(boolean load) {
lazyLoad = load;
return this;