Remove modifiers 'public' and 'abstract' from interface methods
These modifiers are unnecessary (default for interface methods). Change-Id: I5ad21dded21059922fb00449ba44e98037311ac4
This commit is contained in:
@@ -20,12 +20,12 @@ import com.google.gerrit.reviewdb.client.Project;
|
||||
|
||||
/** Provides a cached list of {@link PatchListEntry}. */
|
||||
public interface PatchListCache {
|
||||
public PatchList get(PatchListKey key, Project.NameKey project)
|
||||
PatchList get(PatchListKey key, Project.NameKey project)
|
||||
throws PatchListNotAvailableException;
|
||||
|
||||
public PatchList get(Change change, PatchSet patchSet)
|
||||
PatchList get(Change change, PatchSet patchSet)
|
||||
throws PatchListNotAvailableException;
|
||||
|
||||
public IntraLineDiff getIntraLineDiff(IntraLineDiffKey key,
|
||||
IntraLineDiff getIntraLineDiff(IntraLineDiffKey key,
|
||||
IntraLineDiffArgs args);
|
||||
}
|
||||
|
Reference in New Issue
Block a user