Rename RetryingRestCollectionView to RetryingRestCollectionModifyView

Change Id2289a51c7 renamed RestCollectionView to
RestCollectionModifyView. For name consistency
RetryingRestCollectionView should be renamed to
RetryingRestCollectionModifyView as it implements
RestCollectionModifyView now. This name is also consistent with the
existing RetryingRestModifyView which implements RestModifyView.

Change-Id: I0c4c80705ea78ff748907f493b350c99f15584cb
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2018-07-20 09:14:51 +02:00
parent 030e3cfd9d
commit b21a8eb062
5 changed files with 10 additions and 10 deletions

View File

@@ -71,7 +71,7 @@ import com.google.gerrit.server.restapi.account.AccountsCollection;
import com.google.gerrit.server.restapi.group.GroupsCollection;
import com.google.gerrit.server.update.BatchUpdate;
import com.google.gerrit.server.update.RetryHelper;
import com.google.gerrit.server.update.RetryingRestCollectionView;
import com.google.gerrit.server.update.RetryingRestCollectionModifyView;
import com.google.gerrit.server.update.UpdateException;
import com.google.gwtorm.server.OrmException;
import com.google.inject.Inject;
@@ -87,7 +87,7 @@ import org.eclipse.jgit.lib.Config;
@Singleton
public class PostReviewers
extends RetryingRestCollectionView<
extends RetryingRestCollectionModifyView<
ChangeResource, ReviewerResource, AddReviewerInput, AddReviewerResult> {
public static final int DEFAULT_MAX_REVIEWERS_WITHOUT_CHECK = 10;