Browse Source

Minor - Use generics, for params of the newly introduced constructor, to be consistent with the rest of the code

master
Jaikiran Pai 7 years ago
parent
commit
f9ef22329a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/ssh/ScpToMessageBySftp.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/ssh/ScpToMessageBySftp.java View File

@@ -105,7 +105,7 @@ public class ScpToMessageBySftp extends ScpToMessage/*AbstractSshMessage*/ {
*/
public ScpToMessageBySftp(final boolean verbose,
final Session session,
final List aDirectoryList,
final List<Directory> aDirectoryList,
final String aRemotePath,
final boolean preserveLastModified) {
this(verbose, session, aRemotePath, preserveLastModified);


Loading…
Cancel
Save