Remove no-op call

This commit is contained in:
Jordan Dominion
2023-11-04 23:28:09 -04:00
parent edcd26e44f
commit ec81fcdf41
@@ -246,9 +246,9 @@ namespace Tgstation.Server.Host.Controllers
// trust the system over the database because a user's name can change while still having the same SID
systemIdentity = await systemIdentityFactory.CreateSystemIdentity(ApiHeaders.Username, ApiHeaders.Password, cancellationToken);
}
catch (NotImplementedException ex)
catch (NotImplementedException)
{
RequiresPosixSystemIdentity(ex);
// Intentionally suppressed
}
using (systemIdentity)