Skip to content

Commit

Permalink
Make variable accessible to downstream
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Li committed Aug 25, 2021
1 parent ac39a91 commit 615f7c6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ public class SftpChannelClient implements SftpClient {
private static final String SFTP_CONNECTION_TIMEOUT_KEY = "sftpConn.timeout";
private static final int DEFAULT_SFTP_CONNECTION_TIMEOUT_IN_MS = 3000; //in milliseconds

private State state = null;
private Session session = null;
private JSch jsch = new JSch();
protected State state = null;
protected Session session = null;
protected JSch jsch = new JSch();

public SftpChannelClient(State state) {
this.state = state;
Expand Down

0 comments on commit 615f7c6

Please sign in to comment.