|
From: <vh...@us...> - 2003-06-25 21:00:47
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/stage
In directory sc8-pr-cvs1:/tmp/cvs-serv17345/modules/core/src/com/babeldoc/core/pipeline/stage
Modified Files:
Tag: branch_1_0
FtpWriterPipelineStage.java
Log Message:
- Remove an uneeded "static" on a method
- print a message with this classname and not another one
Index: FtpWriterPipelineStage.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/stage/FtpWriterPipelineStage.java,v
retrieving revision 1.3
retrieving revision 1.3.4.1
diff -C2 -d -r1.3 -r1.3.4.1
*** FtpWriterPipelineStage.java 7 Apr 2003 22:29:22 -0000 1.3
--- FtpWriterPipelineStage.java 25 Jun 2003 21:00:45 -0000 1.3.4.1
***************
*** 97,101 ****
* @param document
*/
! public static void sendFtpMessage(String ftpHost, String ftpUsername,
String ftpPassword, String ftpFolder, String ftpFilename,
com.babeldoc.core.pipeline.PipelineDocument document) throws Exception {
--- 97,101 ----
* @param document
*/
! public void sendFtpMessage(String ftpHost, String ftpUsername,
String ftpPassword, String ftpFolder, String ftpFilename,
com.babeldoc.core.pipeline.PipelineDocument document) throws Exception {
***************
*** 140,144 ****
return super.processHelper();
} catch (Exception except) {
! throw new com.babeldoc.core.pipeline.PipelineException("[FlatToXmlPipelineStage.process] Exception", except);
}
}
--- 140,144 ----
return super.processHelper();
} catch (Exception except) {
! throw new com.babeldoc.core.pipeline.PipelineException("[FtpWriterPipelineStage.process] Exception", except);
}
}
|