diff --git a/src/Adaptive.Aeron/Aeron.cs b/src/Adaptive.Aeron/Aeron.cs index 58dde5e0..1cdf4023 100644 --- a/src/Adaptive.Aeron/Aeron.cs +++ b/src/Adaptive.Aeron/Aeron.cs @@ -16,7 +16,6 @@ using System; using System.IO; -using System.Text; using System.Threading; using Adaptive.Aeron.Exceptions; using Adaptive.Aeron.LogBuffer; @@ -82,7 +81,7 @@ public sealed class Aeron : IDisposable */ public static readonly long KeepaliveIntervalNs = NanoUtil.FromMilliseconds(500); - private static readonly AtomicBoolean _isClosed = new AtomicBoolean(false); + private readonly AtomicBoolean _isClosed = new AtomicBoolean(false); private readonly long _clientId; private readonly ClientConductor _conductor; private readonly IRingBuffer _commandBuffer;