コード例 #1
0
ファイル: PatchListCacheIT.java プロジェクト: netroby/gerrit
 private List<PatchListEntry> getPatches(ObjectId revisionIdA, ObjectId revisionIdB)
     throws PatchListNotAvailableException {
   return patchListCache.get(getKey(revisionIdA, revisionIdB), project).getPatches();
 }
コード例 #2
0
ファイル: PatchListCacheIT.java プロジェクト: netroby/gerrit
 private List<PatchListEntry> getCurrentPatches(String changeId)
     throws PatchListNotAvailableException, RestApiException {
   return patchListCache.get(getKey(null, getCurrentRevisionId(changeId)), project).getPatches();
 }