Rename FileList cache to DiffSummary

We want to store the number of inserted/deleted lines in this cache in
addition to the file list.

Change-Id: Iaa6414c5e99d1c5724c99ac677c2fd9522ef6b05
This commit is contained in:
Dave Borowitz
2016-09-23 13:20:29 +02:00
parent b21c20ba0e
commit 7388e9e1b0
7 changed files with 43 additions and 43 deletions

View File

@@ -34,6 +34,6 @@ public interface PatchListCache {
IntraLineDiff getIntraLineDiff(IntraLineDiffKey key,
IntraLineDiffArgs args);
FileList getFileList(Change change, PatchSet patchSet)
DiffSummary getDiffSummary(Change change, PatchSet patchSet)
throws PatchListNotAvailableException;
}