diff --git a/PROMS/Volian.Base.Library/DebugPrint.cs b/PROMS/Volian.Base.Library/DebugPrint.cs index 026b67f8..2dc5b9cd 100644 --- a/PROMS/Volian.Base.Library/DebugPrint.cs +++ b/PROMS/Volian.Base.Library/DebugPrint.cs @@ -1,9 +1,7 @@ using DevComponents.DotNetBar; -using Org.BouncyCastle.Utilities; using System; using System.Collections.Generic; using System.IO; -using System.Net.NetworkInformation; using System.Text; namespace Volian.Base.Library @@ -161,11 +159,8 @@ namespace Volian.Base.Library _MyDebugPrint_Truncated.Close(); } public static void Write(string format, params object[] args) { - if (args.Length > 8) - { if (args[args.GetUpperBound(0)] == "truncate_false" || args[args.GetUpperBound(0)] == "truncate_true") // if there is a 9th element test the value for truncated data. { - int myvalue = args.GetUpperBound(0); // test and save untruncated and truncated version of the data. if (args[args.GetUpperBound(0)] == "truncate_false")// when untruncated data is being saved { @@ -182,13 +177,6 @@ namespace Volian.Base.Library _MyDebugPrint.Write(format, args); // there is a 9th element, but not for truncated data } - } - else // test if asgs does not have a 9th element save data (no truncate data is available) - { - _MyDebugPrint_Truncated.Write(format, args); - _MyDebugPrint.Write(format, args); - - } } public static void WriteLine(string format, params object[] args) {