fixed mispelled extensions and removed a redundant null check on the properties dictionary

This commit is contained in:
Nick Genovese 2020-02-24 09:24:25 -05:00
parent 20731e57a0
commit 67d9d4dba7

View file

@ -16,7 +16,7 @@ using Newtonsoft.Json;
namespace PepperDash.Essentials.Bridges namespace PepperDash.Essentials.Bridges
{ {
public static class DmChassisControllerApiExtentions public static class DmChassisControllerApiExtensions
{ {
public static void LinkToApi(this DmChassisController dmChassis, BasicTriList trilist, uint joinStart, string joinMapKey) public static void LinkToApi(this DmChassisController dmChassis, BasicTriList trilist, uint joinStart, string joinMapKey)
{ {
@ -135,7 +135,7 @@ namespace PepperDash.Essentials.Bridges
var dmInPortWCec = port as DMInputPortWithCec; var dmInPortWCec = port as DMInputPortWithCec;
if (dmInPortWCec != null && dmChassis.PropertiesConfig.InputSlotSupportsHdcp2 != null) if (dmInPortWCec != null)
{ {
if (dmChassis.PropertiesConfig.InputSlotSupportsHdcp2 != null) if (dmChassis.PropertiesConfig.InputSlotSupportsHdcp2 != null)
{ {