Auto-format source code using gjf 1.24.0 Change-Id: If9ea8eebcf56a50f25be54f26796f8e0e0c66513
diff --git a/src/main/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidator.java b/src/main/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidator.java index 737796b..41ad841 100644 --- a/src/main/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidator.java +++ b/src/main/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidator.java
@@ -233,7 +233,7 @@ Map<String, ObjectId> content = CommitUtils.getChangedContent(repo, c, revWalk); Map<String, FileDiffOutput> fileDiffs = diffOperations.listModifiedFilesAgainstParent( - project, c, /* parentNum = */ 0, DiffOptions.DEFAULTS); + project, c, /* parentNum= */ 0, DiffOptions.DEFAULTS); for (String path : content.keySet()) { ObjectLoader ol = revWalk.getObjectReader().open(content.get(path));
diff --git a/src/test/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidatorTest.java b/src/test/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidatorTest.java index 6de639d..b2fa76d 100644 --- a/src/test/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidatorTest.java +++ b/src/test/java/com/googlesource/gerrit/plugins/uploadvalidator/BlockedKeywordValidatorTest.java
@@ -94,7 +94,7 @@ ImmutableList.of( TaggedEdit.create( Edit.create(0, 0, 0, numberOfLinesInString(fileContent.getValue())), - /* dueToRebase = */ false))); + /* dueToRebase= */ false))); when(mockDiffs.get(fileContent.getKey())).thenReturn(file); when(mockDiffs.containsKey(fileContent.getKey())).thenReturn(true); }