mirror of
https://github.com/hierynomus/sshj.git
synced 2025-12-06 15:20:54 +03:00
Change the scope back to protected, the change was unwanted.
This commit is contained in:
@@ -258,7 +258,7 @@ public class SFTPEngine
|
|||||||
throw new SFTPException("Unexpected data in " + res.getType() + " packet");
|
throw new SFTPException("Unexpected data in " + res.getType() + " packet");
|
||||||
}
|
}
|
||||||
|
|
||||||
private synchronized void transmit(SFTPPacket<Request> payload)
|
protected synchronized void transmit(SFTPPacket<Request> payload)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
final int len = payload.available();
|
final int len = payload.available();
|
||||||
out.write((len >>> 24) & 0xff);
|
out.write((len >>> 24) & 0xff);
|
||||||
|
|||||||
Reference in New Issue
Block a user