Remove IAuthenticationContext.Clone()

This commit is contained in:
Cyberboss
2018-09-27 14:20:59 -04:00
parent a2b1bd3d79
commit d9bed3ac0c
2 changed files with 0 additions and 9 deletions
@@ -55,9 +55,6 @@ namespace Tgstation.Server.Host.Security
/// <inheritdoc />
public void Dispose() => SystemIdentity?.Dispose();
/// <inheritdoc />
public IAuthenticationContext Clone() => new AuthenticationContext(SystemIdentity.Clone(), User, InstanceUser);
/// <inheritdoc />
public ulong GetRight(RightsType rightsType)
{
@@ -30,11 +30,5 @@ namespace Tgstation.Server.Host.Security
/// The <see cref="ISystemIdentity"/> of <see cref="User"/> if applicable
/// </summary>
ISystemIdentity SystemIdentity { get; }
/// <summary>
/// Creates a copy of the <see cref="IAuthenticationContext"/>
/// </summary>
/// <returns>A new <see cref="IAuthenticationContext"/></returns>
IAuthenticationContext Clone();
}
}