From 4ddca5da3bf4ef2ce90c2d8f28e9a99d828ff1b9 Mon Sep 17 00:00:00 2001 From: Elliott Liggett Date: Fri, 12 Mar 2021 23:19:43 -0800 Subject: [PATCH] Minor neatness change. --- commhandler.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/commhandler.cpp b/commhandler.cpp index 6a363f6..8021c0d 100644 --- a/commhandler.cpp +++ b/commhandler.cpp @@ -152,15 +152,12 @@ void commHandler::openPort() qDebug(logSerial()) << "Opened port: " << portName; return; } else { - // debug? qDebug(logSerial()) << "Could not open serial port " << portName << " , please restart."; isConnected = false; serialError = true; emit haveSerialPortError(portName, "Could not open port. Please restart."); return; } - - } void commHandler::closePort() @@ -201,7 +198,6 @@ void commHandler::printHex(const QByteArray &pdata, bool printVert, bool printHo { for(int i=0; i < strings.length(); i++) { - //sdata = QString(strings.at(i)); qDebug(logSerial()) << strings.at(i); } }