Remove debug printout for XYPlot RO

This commit is contained in:
Rich 2017-01-20 14:12:04 +00:00
parent 231849ace4
commit e459a5aec6

View File

@ -965,10 +965,8 @@ namespace VEPROMS.CSLA.Library
string resstr = rtnstr.Substring(0, indx); string resstr = rtnstr.Substring(0, indx);
int endHsp = rtnstr.IndexOf(")", indx); int endHsp = rtnstr.IndexOf(")", indx);
string tmpstr = rtnstr.Substring(indx + 5, endHsp - indx - 5); string tmpstr = rtnstr.Substring(indx + 5, endHsp - indx - 5);
if (!tmpstr.Contains("<<G")) // B2017-012 Don't ccovert space to hardspaces for XY Plots. if (!tmpstr.Contains("<<G")) // B2017-012 Don't convert space to hardspaces for XY Plots.
tmpstr = tmpstr.Replace(" ", @"\u160?"); tmpstr = tmpstr.Replace(" ", @"\u160?");
else
Console.WriteLine(tmpstr);
resstr = resstr + tmpstr; resstr = resstr + tmpstr;
rtnstr = resstr + rtnstr.Substring(endHsp + 1); rtnstr = resstr + rtnstr.Substring(endHsp + 1);
} }