diff --git a/src/Foundatio/Utility/InstrumentsValues.cs b/src/Foundatio/Utility/InstrumentsValues.cs index f9d9e128..427b3db1 100644 --- a/src/Foundatio/Utility/InstrumentsValues.cs +++ b/src/Foundatio/Utility/InstrumentsValues.cs @@ -1,5 +1,4 @@ using System; -using System.Threading; using Microsoft.Extensions.Logging; namespace Foundatio.Utility; @@ -11,8 +10,6 @@ public class InstrumentsValues { private readonly object _lock = new(); private int _readCount; - private bool _valuesUpdating; - private readonly AutoResetEvent _valuesUpdatingEvent = new(false); private T1? _value1; private T2? _value2; private T3? _value3;