From f8fb20df911ec5131d1eb5ac8af6b1edc72cb88b Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Thu, 27 Sep 2018 16:06:14 -0400 Subject: [PATCH] Cleanup PosixSystemIdentityFactory --- .../Security/PosixSystemIdentityFactory.cs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/Tgstation.Server.Host/Security/PosixSystemIdentityFactory.cs b/src/Tgstation.Server.Host/Security/PosixSystemIdentityFactory.cs index 390f5104b6..3857b42467 100644 --- a/src/Tgstation.Server.Host/Security/PosixSystemIdentityFactory.cs +++ b/src/Tgstation.Server.Host/Security/PosixSystemIdentityFactory.cs @@ -8,19 +8,13 @@ namespace Tgstation.Server.Host.Security /// /// for posix systems /// - /// Blocked by https://github.com/dotnet/corefx/issues/3187 + /// TODO: Blocked by https://github.com/dotnet/corefx/issues/3187 sealed class PosixSystemIdentityFactory : ISystemIdentityFactory { /// - public Task CreateSystemIdentity(User user, CancellationToken cancellationToken) - { - throw new NotImplementedException(); - } + public Task CreateSystemIdentity(User user, CancellationToken cancellationToken) => throw new NotImplementedException(); /// - public Task CreateSystemIdentity(string username, string password, CancellationToken cancellationToken) - { - throw new NotImplementedException(); - } + public Task CreateSystemIdentity(string username, string password, CancellationToken cancellationToken) => throw new NotImplementedException(); } }