From a3f9b430d1860c55c2ce7a6d2d9e7916e74565ad Mon Sep 17 00:00:00 2001 From: DarthAffe Date: Thu, 13 Aug 2020 10:30:25 +0200 Subject: [PATCH] Small formatting changes --- .../Generic/CoolerMasterUpdateQueue.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterUpdateQueue.cs b/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterUpdateQueue.cs index eb94e3a..21b26ce 100644 --- a/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterUpdateQueue.cs +++ b/RGB.NET.Devices.CoolerMaster/Generic/CoolerMasterUpdateQueue.cs @@ -13,7 +13,7 @@ namespace RGB.NET.Devices.CoolerMaster #region Properties & Fields private CoolerMasterDevicesIndexes _deviceIndex; - private _CoolerMasterColorMatrix _deviceMatrix; + private readonly _CoolerMasterColorMatrix _deviceMatrix; #endregion @@ -28,8 +28,8 @@ namespace RGB.NET.Devices.CoolerMaster : base(updateTrigger) { this._deviceIndex = deviceIndex; - this._deviceMatrix = new _CoolerMasterColorMatrix(); - + + _deviceMatrix = new _CoolerMasterColorMatrix(); _deviceMatrix.KeyColor = new _CoolerMasterKeyColor[_CoolerMasterColorMatrix.ROWS, _CoolerMasterColorMatrix.COLUMNS]; }