INT-1614 removed unused Temp.java form test package of SFTP module
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
package org.springframework.integration.sftp.inbound;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
|
||||
public class Temp {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
|
||||
|
||||
//client.retrieveFile("path", outputStream);
|
||||
|
||||
ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
|
||||
|
||||
System.out.println(inputStream.read());
|
||||
System.out.println(inputStream.read());
|
||||
System.out.println(inputStream.read());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user