commit | bcfb05cbd1200422b81e9ac2ce824868ff74f252 | [log] [tgz] |
---|---|---|
author | David Pursehouse <dpursehouse@collab.net> | Thu Feb 28 16:48:01 2019 +0900 |
committer | David Pursehouse <dpursehouse@collab.net> | Thu Feb 28 16:48:01 2019 +0900 |
tree | 489ca9e7e0263c22e8c0a8444ad34b61b4b5d9ac | |
parent | 7bd2008be31497696e4818f4a4d91b317251c9ac [diff] |
Format with google-java-format 1.7 Change-Id: I4c053b01b8948c15aa2b3feb7790153b3ded9d4e
diff --git a/src/main/java/com/googlesource/gerrit/plugins/download/command/CloneWithCommitMsgHook.java b/src/main/java/com/googlesource/gerrit/plugins/download/command/CloneWithCommitMsgHook.java index adb0ca8..52fd08f 100644 --- a/src/main/java/com/googlesource/gerrit/plugins/download/command/CloneWithCommitMsgHook.java +++ b/src/main/java/com/googlesource/gerrit/plugins/download/command/CloneWithCommitMsgHook.java
@@ -78,7 +78,11 @@ .append(" ") .append(QuoteUtil.quote(projectName + "/.git/hooks/")); if (extraCommand != null) { - b.append(" && (cd ").append(QuoteUtil.quote(projectName)).append(" && ").append(extraCommand).append(")"); + b.append(" && (cd ") + .append(QuoteUtil.quote(projectName)) + .append(" && ") + .append(extraCommand) + .append(")"); } return b.toString(); }