From 17b9aa51318fa6b4a59abcc836a33a6f3bde60bc Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 13 Jun 2020 21:19:27 -0400 Subject: [PATCH] Minor code cleanup --- src/Tgstation.Server.Host/Core/Application.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Core/Application.cs b/src/Tgstation.Server.Host/Core/Application.cs index 3d75f56a7a..df047e95ad 100644 --- a/src/Tgstation.Server.Host/Core/Application.cs +++ b/src/Tgstation.Server.Host/Core/Application.cs @@ -211,7 +211,7 @@ namespace Tgstation.Server.Host.Core // HACK HACK HACK HACK HACK const string ConfigureMethodName = nameof(SqlServerDatabaseContext.ConfigureWith); var configureFunction = typeof(TContext).GetMethod( - nameof(SqlServerDatabaseContext.ConfigureWith), + ConfigureMethodName, BindingFlags.Public | BindingFlags.Static); if (configureFunction == null)