ReceiveCommits: remove private from members in private inner classes
Change-Id: I935cb5d0614b779f2b8207b482c0da339d8b7963
This commit is contained in:
@@ -2323,7 +2323,7 @@ class ReceiveCommits {
|
||||
private class CreateRequest {
|
||||
final RevCommit commit;
|
||||
final Task progress;
|
||||
private final String refName;
|
||||
final String refName;
|
||||
|
||||
Change.Id changeId;
|
||||
ReceiveCommand cmd;
|
||||
@@ -2519,9 +2519,9 @@ class ReceiveCommits {
|
||||
ReceiveCommand prev;
|
||||
ReceiveCommand cmd;
|
||||
PatchSetInfo info;
|
||||
private PatchSet.Id priorPatchSet;
|
||||
PatchSet.Id priorPatchSet;
|
||||
List<String> groups = ImmutableList.of();
|
||||
private ReplaceOp replaceOp;
|
||||
ReplaceOp replaceOp;
|
||||
|
||||
ReplaceRequest(
|
||||
Change.Id toChange, RevCommit newCommit, ReceiveCommand cmd, boolean checkMergedInto) {
|
||||
@@ -2802,8 +2802,8 @@ class ReceiveCommits {
|
||||
}
|
||||
|
||||
private class UpdateGroupsRequest {
|
||||
private final PatchSet.Id psId;
|
||||
private final RevCommit commit;
|
||||
final PatchSet.Id psId;
|
||||
final RevCommit commit;
|
||||
List<String> groups = ImmutableList.of();
|
||||
|
||||
UpdateGroupsRequest(Ref ref, RevCommit commit) {
|
||||
@@ -2838,7 +2838,7 @@ class ReceiveCommits {
|
||||
}
|
||||
|
||||
private class UpdateOneRefOp implements RepoOnlyOp {
|
||||
private final ReceiveCommand cmd;
|
||||
final ReceiveCommand cmd;
|
||||
|
||||
private UpdateOneRefOp(ReceiveCommand cmd) {
|
||||
this.cmd = checkNotNull(cmd);
|
||||
|
||||
Reference in New Issue
Block a user