From e1cde72a82462656fcb62fc0d2ebf587e516a4e9 Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Tue, 19 Nov 2024 11:00:50 +0100 Subject: [PATCH] Remove semi-colon --- backend/FwLite/LocalWebApp/Auth/AuthHelpersFactory.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/FwLite/LocalWebApp/Auth/AuthHelpersFactory.cs b/backend/FwLite/LocalWebApp/Auth/AuthHelpersFactory.cs index 801e3b6d8..d9fc64aac 100644 --- a/backend/FwLite/LocalWebApp/Auth/AuthHelpersFactory.cs +++ b/backend/FwLite/LocalWebApp/Auth/AuthHelpersFactory.cs @@ -39,7 +39,6 @@ public AuthHelpers GetHelper(LexboxServer server) /// public AuthHelpers GetHelper(ProjectData project) { - ; var originDomain = project.OriginDomain; if (string.IsNullOrEmpty(originDomain)) throw new InvalidOperationException("No origin domain in project data"); return GetHelper(options.Value.GetServer(project));