mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
Fixed code warning
This commit is contained in:
parent
6974203e34
commit
d487bee35c
@ -68,7 +68,7 @@ namespace RGB.NET.Devices.DMX.E131
|
||||
this.Hostname = deviceDefinition.Hostname;
|
||||
this.Port = deviceDefinition.Port;
|
||||
this.Universe = deviceDefinition.Universe;
|
||||
|
||||
|
||||
byte[]? cid = deviceDefinition.CID;
|
||||
if ((cid == null) || (cid.Length != CID_LENGTH))
|
||||
{
|
||||
@ -76,7 +76,7 @@ namespace RGB.NET.Devices.DMX.E131
|
||||
new Random().NextBytes(cid);
|
||||
}
|
||||
|
||||
CID = cid!;
|
||||
CID = cid;
|
||||
|
||||
DeviceName = DeviceHelper.CreateDeviceName(Manufacturer, Model);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user