From 80dff9a456b96016940866e8c0ee6928b52df910 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 15 May 2020 21:58:09 -0400 Subject: [PATCH] Fix build warning --- .../Components/Session/SessionControllerFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Session/SessionControllerFactory.cs b/src/Tgstation.Server.Host/Components/Session/SessionControllerFactory.cs index c397bfe4d2..fc1cd8fbdd 100644 --- a/src/Tgstation.Server.Host/Components/Session/SessionControllerFactory.cs +++ b/src/Tgstation.Server.Host/Components/Session/SessionControllerFactory.cs @@ -430,7 +430,7 @@ namespace Tgstation.Server.Host.Components.Session /// Check if a given can be bound to. /// /// The port number to test. - void PortBindTest(ushort port) + static void PortBindTest(ushort port) { using var socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);