From 7a5dc2994683bad892a1fc30c9d204b5ac0713a9 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 20 Feb 2024 09:23:32 -0600 Subject: [PATCH] refactor: remove MC bridge creation --- src/PepperDash.Essentials/ControlSystem.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/PepperDash.Essentials/ControlSystem.cs b/src/PepperDash.Essentials/ControlSystem.cs index 34bd30d9..c2e8066d 100644 --- a/src/PepperDash.Essentials/ControlSystem.cs +++ b/src/PepperDash.Essentials/ControlSystem.cs @@ -366,11 +366,11 @@ namespace PepperDash.Essentials LoadTieLines(); - var mobileControl = GetMobileControlDevice(); + /*var mobileControl = GetMobileControlDevice(); if (mobileControl == null) return; - mobileControl.LinkSystemMonitorToAppServer(); + mobileControl.LinkSystemMonitorToAppServer();*/ } @@ -480,14 +480,14 @@ namespace PepperDash.Essentials continue; } - BuildMC(room as IEssentialsRoom); + // BuildMC(room as IEssentialsRoom); } Debug.Console(0, Debug.ErrorLogLevel.Notice, "All Rooms Loaded."); } - private static void BuildMC(IEssentialsRoom room) + /*private static void BuildMC(IEssentialsRoom room) { Debug.Console(0, Debug.ErrorLogLevel.Notice, $"Attempting to build Mobile Control Bridge for {room?.Key}"); @@ -528,7 +528,7 @@ namespace PepperDash.Essentials Debug.Console(0, Debug.ErrorLogLevel.Notice, "Mobile Control not enabled for this system"); return null; - } + }*/ /// /// Fires up a logo server if not already running