diff options
author | Masaya Suzuki <masayasuzuki@google.com> | 2019-11-07 17:17:21 -0800 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2019-11-10 09:38:00 -0800 |
commit | ca800b55c8ff1f97afd2f7fe707d54b84f6df9c3 (patch) | |
tree | 3e41e0caef4af67f1201814d4ca1be59e841e911 | |
parent | e102bbed995f0e6d3a1a8e5db6d08f9804fd3260 (diff) | |
download | jgit-ca800b55c8ff1f97afd2f7fe707d54b84f6df9c3.tar.gz jgit-ca800b55c8ff1f97afd2f7fe707d54b84f6df9c3.zip |
BaseReceivePack: Fix the format
Change-Id: I6136ef5318f81a6feb1267338ca76e60122fd15b
Signed-off-by: Masaya Suzuki <masayasuzuki@google.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java index e402de0158..36a10cc6b9 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/BaseReceivePack.java @@ -1361,7 +1361,7 @@ public abstract class BaseReceivePack { } static ReceiveCommand parseCommand(String line) throws PackProtocolException { - if (line == null || line.length() < 83) { + if (line == null || line.length() < 83) { throw new PackProtocolException( JGitText.get().errorInvalidProtocolWantedOldNewRef); } |