diff --git a/PROMS/Volian.Print.Library/PDFReport.cs b/PROMS/Volian.Print.Library/PDFReport.cs index ad2d784c..56228ab2 100644 --- a/PROMS/Volian.Print.Library/PDFReport.cs +++ b/PROMS/Volian.Print.Library/PDFReport.cs @@ -404,7 +404,8 @@ namespace Volian.Print.Library { if (document.IsOpen()) { - document.Add(new Phrase("End of Search Results",FontFactory.GetFont("Arial",4))); + //document.Add(new Phrase("End of Search Results",FontFactory.GetFont("Arial",4))); // B2019-089 commented out - used for debug + document.Add(new Phrase(" ", FontFactory.GetFont("Arial", 4))); // B2019-089 - assure output has at least a blank space to prevent error on close document.Close(); System.Diagnostics.Process.Start(_FileName); } diff --git a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs index 73b6ac1c..6cd5324f 100644 --- a/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs +++ b/PROMS/Volian.Print.Library/Rtf2iTextSharp.cs @@ -99,13 +99,6 @@ namespace Volian.Print.Library get { return _HasIndent; } set { _HasIndent = value; } } - private static bool _DoingComparison = false; - public static bool DoingComparison - { - get { return Rtf2iTextSharp._DoingComparison; } - set { Rtf2iTextSharp._DoingComparison = value; } - } - private IRtfDocument _RtfDoc; private Paragraph _MyParagraph = new Paragraph(); private iTextSharp.text.Font _MyFont;