From: Han-Wen Nienhuys Date: Tue, 16 Jan 2018 16:28:22 +0000 (+0100) Subject: Make SideBandInputStream public X-Git-Tag: v4.11.0.201803080745-r~149 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f40ebed1244283040ce64fb87dc1644438245478;p=jgit.git Make SideBandInputStream public This mirrors SideBandOutputStream which is also public Signed-off-by: Han-Wen Nienhuys Change-Id: Ic0983af663f0c4c85bf5486b195108c45cddc4c2 --- 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 25486cb64f..15338a3a3a 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;