Author: davsclaus
Date: Wed Jul 16 08:43:23 2008
New Revision: 677316
URL: http://svn.apache.org/viewvc?rev=677316&view=rev
Log:
Fixed compiler error after upgrade of jsch
Modified:
activemq/camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConsumer.java
Modified:
activemq/camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConsumer.java
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConsumer.java?rev=677316&r1=677315&r2=677316&view=diff
==============================================================================
---
activemq/camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConsumer.java
(original)
+++
activemq/camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConsumer.java
Wed Jul 16 08:43:23 2008
@@ -126,7 +126,7 @@
}
}
- protected String getFullFileName(ChannelSftp.LsEntry sftpFile) throws
IOException {
+ protected String getFullFileName(ChannelSftp.LsEntry sftpFile) throws
IOException, SftpException {
return channel.pwd() + "/" + sftpFile.getFilename();
}