From dbafce0aa896c0b5288e8591f8375990ea45b9f5 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Wed, 29 Jul 2020 14:42:26 -0600 Subject: [PATCH] fix RunRouteAction methods --- .../Room/Types/EssentialsHuddleVtc1Room.cs | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs index b7ce3030..72f17a73 100644 --- a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs +++ b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs @@ -405,12 +405,7 @@ namespace PepperDash.Essentials /// public void RunRouteAction(string routeKey, string sourceListKey) { - if (string.IsNullOrEmpty(sourceListKey)) - { - RunRouteAction(routeKey, new Action(() => { })); - } - else - throw new NotImplementedException(); + RunRouteAction(routeKey, new Action(() => { })); } /// @@ -421,12 +416,8 @@ namespace PepperDash.Essentials /// public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback) { - if (string.IsNullOrEmpty(sourceListKey)) - { RunRouteAction(routeKey, successCallback); - } - else - throw new NotImplementedException(); + } ///