Remove dead QUpdater code

This commit is contained in:
Joel Wetzell
2020-06-12 08:11:53 -05:00
parent 1a5835075d
commit 76a2f1c5ec
3 changed files with 1 additions and 52 deletions
@@ -21,7 +21,6 @@ namespace qController.Communication
{
this.port = port;
this.ipAddress = address;
qClient = new QClient(ipAddress, port);
qUpdater = new QUpdater(this);
@@ -75,8 +74,6 @@ namespace qController.Communication
public void Kill(){
Log.Debug("QCONTROLLER - Killing");
if (qUpdater != null)
qUpdater.Kill();
if (qClient != null)
qClient.Close();
}