From 16a34b131c48d9576043b2274901341019cf7030 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 3 Oct 2024 21:08:35 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/AuthenticationResponse.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/websocket-sharp/Net/AuthenticationResponse.cs b/websocket-sharp/Net/AuthenticationResponse.cs index ab20953e..90d9b83c 100644 --- a/websocket-sharp/Net/AuthenticationResponse.cs +++ b/websocket-sharp/Net/AuthenticationResponse.cs @@ -105,9 +105,7 @@ namespace WebSocketSharp.Net internal uint NonceCount { get { - return _nonceCount < UInt32.MaxValue - ? _nonceCount - : 0; + return _nonceCount < UInt32.MaxValue ? _nonceCount : 0; } }