Skip to content

Commit

Permalink
made classes non-final to allow mocking (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
joprsal authored and hierynomus committed May 20, 2016
1 parent 364a821 commit 3229584
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import java.util.Arrays;
import java.util.List;

/** Support for uploading files over a connected link using SCP. */
public final class SCPDownloadClient extends AbstractSCPClient {
/** Support for downloading files over a connected link using SCP. */
public class SCPDownloadClient extends AbstractSCPClient {

private boolean recursiveMode = true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.io.InputStream;

/** Support for uploading files over a connected link using SCP. */
public final class SCPUploadClient extends AbstractSCPClient {
public class SCPUploadClient extends AbstractSCPClient {

private LocalFileFilter uploadFilter;

Expand Down

0 comments on commit 3229584

Please sign in to comment.