From 488306e0aba02073662e456b6e5c7fdeb7ae26dc Mon Sep 17 00:00:00 2001 From: Stephen sspates Date: Wed, 24 Jan 2024 10:19:38 -0800 Subject: [PATCH] More adjustments --- src/NATS.Client.Core/INatsConnection.cs | 2 ++ tests/NATS.Client.JetStream.Tests/NatsJsContextFactoryTest.cs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NATS.Client.Core/INatsConnection.cs b/src/NATS.Client.Core/INatsConnection.cs index 82afa7581..f7931d43e 100644 --- a/src/NATS.Client.Core/INatsConnection.cs +++ b/src/NATS.Client.Core/INatsConnection.cs @@ -1,3 +1,5 @@ +using System.Diagnostics.CodeAnalysis; + namespace NATS.Client.Core; public interface INatsConnection : IAsyncDisposable diff --git a/tests/NATS.Client.JetStream.Tests/NatsJsContextFactoryTest.cs b/tests/NATS.Client.JetStream.Tests/NatsJsContextFactoryTest.cs index 228fbaaeb..399e6c0b2 100644 --- a/tests/NATS.Client.JetStream.Tests/NatsJsContextFactoryTest.cs +++ b/tests/NATS.Client.JetStream.Tests/NatsJsContextFactoryTest.cs @@ -1,5 +1,4 @@ using NATS.Client.Core.Tests; -using NATS.Client.JetStream.Models; namespace NATS.Client.JetStream.Tests;