From b173712a158b550b39bb0bb0c73e398fa15309d0 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 22 Sep 2024 15:20:48 +1000 Subject: [PATCH] Fix suppressed warning in `ClientWebSocketWrapper` ctor more like "human not smart enough to recognise this" amirite --- src/BizHawk.Client.Common/Api/ClientWebSocketWrapper.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Client.Common/Api/ClientWebSocketWrapper.cs b/src/BizHawk.Client.Common/Api/ClientWebSocketWrapper.cs index 65c774dffc..60681a4278 100644 --- a/src/BizHawk.Client.Common/Api/ClientWebSocketWrapper.cs +++ b/src/BizHawk.Client.Common/Api/ClientWebSocketWrapper.cs @@ -16,10 +16,9 @@ namespace BizHawk.Client.Common public ClientWebSocketWrapper(Uri uri, CancellationToken? cancellationToken = null) { + cancellationToken ??= CancellationToken.None; _w = new ClientWebSocket(); -#pragma warning disable MA0040 // Analyzer not smart enough to recognise this - _w.ConnectAsync(uri, cancellationToken ?? CancellationToken.None).Wait(); -#pragma warning restore MA0040 + _w.ConnectAsync(uri, cancellationToken.Value).Wait(cancellationToken.Value); } /// calls