Cleanup PosixSystemIdentityFactory

This commit is contained in:
Cyberboss
2018-09-27 16:06:14 -04:00
parent 86674e60a5
commit f8fb20df91
@@ -8,19 +8,13 @@ namespace Tgstation.Server.Host.Security
/// <summary>
/// <see cref="ISystemIdentityFactory"/> for posix systems
/// </summary>
/// <remarks>Blocked by https://github.com/dotnet/corefx/issues/3187</remarks>
/// <remarks>TODO: Blocked by https://github.com/dotnet/corefx/issues/3187</remarks>
sealed class PosixSystemIdentityFactory : ISystemIdentityFactory
{
/// <inheritdoc />
public Task<ISystemIdentity> CreateSystemIdentity(User user, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
public Task<ISystemIdentity> CreateSystemIdentity(User user, CancellationToken cancellationToken) => throw new NotImplementedException();
/// <inheritdoc />
public Task<ISystemIdentity> CreateSystemIdentity(string username, string password, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
public Task<ISystemIdentity> CreateSystemIdentity(string username, string password, CancellationToken cancellationToken) => throw new NotImplementedException();
}
}