Remove redundant 'this.' prefix on calls to projectOperations

Change-Id: I6227598e33a5b948e16ada534a05be57d2ef7552
This commit is contained in:
David Pursehouse
2018-11-30 13:07:01 +09:00
parent 54dcaf8955
commit add35ae2c5
11 changed files with 37 additions and 39 deletions

View File

@@ -403,8 +403,7 @@ public class SubmoduleSubscriptionsIT extends AbstractSubmoduleSubscription {
@Test
public void subscriptionInheritACL() throws Exception {
Project.NameKey configKey =
this.projectOperations.newProject().submitType(getSubmitType()).create();
Project.NameKey configKey = projectOperations.newProject().submitType(getSubmitType()).create();
grantPush(configKey);
Project.NameKey config2Key =
projectOperations.newProject().parent(configKey).submitType(getSubmitType()).create();