New comments

This commit is contained in:
Lars Brubaker 2016-08-04 14:46:29 -07:00
parent 100a5bb882
commit 3e3b9ce68f

View file

@ -154,6 +154,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io
string line = internalStream.ReadLine();
commandCount++;
// make sure we don't parse comments
if(line.Contains(";"))
{
line = line.Split(';')[0];