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();
}
}