From 575a80ac446d644bb64301e445078bfa2416c992 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Wed, 14 Sep 2011 10:48:43 -0700 Subject: [PATCH] Wrap excessively long line in BasePackFetchConnection Change-Id: I926838058c1de2146e22faa08570406600457acb Signed-off-by: Shawn O. Pearce --- .../org/eclipse/jgit/transport/BasePackFetchConnection.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/BasePackFetchConnection.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/BasePackFetchConnection.java index 67bedaca1..2c9761a25 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/BasePackFetchConnection.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/BasePackFetchConnection.java @@ -433,7 +433,9 @@ public abstract class BasePackFetchConnection extends BasePackConnection // ACK status to tell us common objects for reuse in future // requests. If its not enabled, we can't talk to the peer. // - throw new PackProtocolException(uri, MessageFormat.format(JGitText.get().statelessRPCRequiresOptionToBeEnabled, OPTION_MULTI_ACK_DETAILED)); + throw new PackProtocolException(uri, MessageFormat.format( + JGitText.get().statelessRPCRequiresOptionToBeEnabled, + OPTION_MULTI_ACK_DETAILED)); } return line.toString();