Merge "Fix reindex broken by removing entries from multimap"

This commit is contained in:
Dave Borowitz
2013-06-28 00:55:04 +00:00
committed by Gerrit Code Review

View File

@@ -377,7 +377,7 @@ public class Reindex extends SiteProgram {
private void getPathsAndIndex(RevCommit bCommit) throws Exception {
RevTree bTree = bCommit.getTree();
List<ChangeData> cds = byId.get(bCommit);
List<ChangeData> cds = Lists.newArrayList(byId.get(bCommit));
try {
RevTree aTree = aFor(bCommit, walk);
if (aTree == null) {