From 60c1ece41dc484c7d4538b5ef1708aefefe503b9 Mon Sep 17 00:00:00 2001 From: glax Date: Mon, 29 Jan 2024 15:37:43 +0100 Subject: [PATCH] redundant declaration --- CShocker/Devices/Abstract/Device.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/CShocker/Devices/Abstract/Device.cs b/CShocker/Devices/Abstract/Device.cs index 662661c..d1057b6 100644 --- a/CShocker/Devices/Abstract/Device.cs +++ b/CShocker/Devices/Abstract/Device.cs @@ -38,7 +38,6 @@ public abstract class Device : IDisposable protected Device(IntensityRange intensityRange, DurationRange durationRange, DeviceApi apiType, ILogger? logger = null) { - Thread workQueueThread; this.IntensityRange = intensityRange; this.DurationRange = durationRange; this.ApiType = apiType;