Fix import order

This commit is contained in:
David Turanski
2020-07-01 19:00:52 -04:00
parent efafaf2ab6
commit 622b5f910b
2 changed files with 4 additions and 5 deletions

View File

@@ -23,7 +23,9 @@ import java.util.function.Supplier;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import com.jcraft.jsch.ChannelSftp.LsEntry;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Flux;
import org.springframework.aop.framework.ProxyFactoryBean;
import org.springframework.aop.support.NameMatchMethodPointcutAdvisor;
@@ -68,9 +70,6 @@ import org.springframework.util.CollectionUtils;
import org.springframework.util.MimeTypeUtils;
import org.springframework.util.StringUtils;
import com.jcraft.jsch.ChannelSftp.LsEntry;
import reactor.core.publisher.Flux;
/**
* @author Gary Russell
* @author Artem Bilan

View File

@@ -19,6 +19,8 @@ package org.springframework.cloud.fn.supplier.sftp;
import java.util.HashMap;
import java.util.Map;
import com.jcraft.jsch.ChannelSftp.LsEntry;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
@@ -31,8 +33,6 @@ import org.springframework.integration.file.remote.session.SessionFactory;
import org.springframework.integration.sftp.session.DefaultSftpSessionFactory;
import org.springframework.lang.Nullable;
import com.jcraft.jsch.ChannelSftp.LsEntry;
/**
* Session factory configuration.
*