X-Git-Url: http://jaekl.net/gitweb/?p=cfb.git;a=blobdiff_plain;f=prod%2Fnet%2Fjaekl%2Fcfb%2FCFB.java;h=178dc2fe139b686a417b2d7c96fdb5a7088608a0;hp=33a1ca04b23312d3e19b05efbc8e8b5cfc2f1546;hb=48cbf8ce43a3fa412ab589821c3e2dca85a1a303;hpb=4173dc72e969e6e3f51c9cb4734b07ec664db975 diff --git a/prod/net/jaekl/cfb/CFB.java b/prod/net/jaekl/cfb/CFB.java index 33a1ca0..178dc2f 100644 --- a/prod/net/jaekl/cfb/CFB.java +++ b/prod/net/jaekl/cfb/CFB.java @@ -218,7 +218,9 @@ public class CFB { Delta delta = new Delta(prior, analysis); HtmlReport report = new HtmlReport(m_bundle, messageMap.getColl(), delta); - report.write(m_output); + if (null != m_output) { + report.write(m_output); + } Notifier notifier = new Notifier(m_bundle, m_config); notifier.sendEmailIfNeeded(pw, report);