From f40ebed1244283040ce64fb87dc1644438245478 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Tue, 16 Jan 2018 17:28:22 +0100 Subject: [PATCH] Make SideBandInputStream public This mirrors SideBandOutputStream which is also public Signed-off-by: Han-Wen Nienhuys Change-Id: Ic0983af663f0c4c85bf5486b195108c45cddc4c2 --- .../src/org/eclipse/jgit/transport/SideBandInputStream.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandInputStream.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandInputStream.java index 25486cb64..15338a3a3 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandInputStream.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/SideBandInputStream.java @@ -76,8 +76,9 @@ import org.eclipse.jgit.util.RawParseUtils; * an unrecoverable error. * * @see SideBandOutputStream + * @since 4.11 */ -class SideBandInputStream extends InputStream { +public class SideBandInputStream extends InputStream { static final int CH_DATA = 1; static final int CH_PROGRESS = 2; static final int CH_ERROR = 3;