From: bruce m. <tr...@us...> - 2004-07-28 21:44:27
|
Update of /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/processor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2964/modules/core/src/com/babeldoc/core/pipeline/processor Modified Files: SyncPipelineStageProcessor.java Log Message: 1. Fixed a logging error where an exception with no root cause prints no error 2. Fixed bad error messaging when bad pipeline or pipeline stage provided to process 3. Fixed a null pointer exception in XslTransform Stage where empty document causes NPE Index: SyncPipelineStageProcessor.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/core/src/com/babeldoc/core/pipeline/processor/SyncPipelineStageProcessor.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SyncPipelineStageProcessor.java 24 Jul 2004 00:18:51 -0000 1.5 --- SyncPipelineStageProcessor.java 28 Jul 2004 21:44:19 -0000 1.6 *************** *** 177,186 **** IJournalTicket ticket, Collection finalResults) throws PipelineException { if ((name != null) && !name.equals("null") && (document != null)) { - LogService.getInstance().logInfo(I18n.get("019008", name)); - // Get the pipeline stage for this name IPipelineStage pstage = getPipelineStage(name); if (pstage != null) { try { pstage.initialize(); --- 177,185 ---- IJournalTicket ticket, Collection finalResults) throws PipelineException { if ((name != null) && !name.equals("null") && (document != null)) { // Get the pipeline stage for this name IPipelineStage pstage = getPipelineStage(name); if (pstage != null) { + LogService.getInstance().logInfo(I18n.get("019008", name)); try { pstage.initialize(); |