Format Java files with google-java-format 1.7
Change-Id: I0b68fe3667afddd93e6db04785768a7f9882f610
diff --git a/src/main/java/com/googlesource/gerrit/plugins/its/base/its/ItsConfig.java b/src/main/java/com/googlesource/gerrit/plugins/its/base/its/ItsConfig.java
index d05ec58..6a5eda4 100644
--- a/src/main/java/com/googlesource/gerrit/plugins/its/base/its/ItsConfig.java
+++ b/src/main/java/com/googlesource/gerrit/plugins/its/base/its/ItsConfig.java
@@ -182,8 +182,7 @@
*/
public Pattern getIssuePattern() {
Optional<String> match =
- getCommentLinkInfo(getCommentLinkName())
- .stream()
+ getCommentLinkInfo(getCommentLinkName()).stream()
.filter(input -> input.match != null && !input.match.trim().isEmpty())
.map(input -> input.match)
.reduce((a, b) -> b);
@@ -268,8 +267,7 @@
NameKey projectName = currentProjectName.get();
if (projectName != null) {
List<CommentLinkInfo> commentlinks = projectCache.get(projectName).getCommentLinks();
- return commentlinks
- .stream()
+ return commentlinks.stream()
.filter(input -> input.name.equals(commentlinkName))
.collect(toList());
}