Skip to content
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.

Commit

Permalink
Make ThrowIfDisposed protected
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoK committed Mar 10, 2016
1 parent 6bea519 commit 41fa99e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Identity/RoleManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ private IRoleClaimStore<TRole> GetClaimStore()
return cast;
}

private void ThrowIfDisposed()
protected void ThrowIfDisposed()
{
if (_disposed)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Identity/UserManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2265,7 +2265,7 @@ private IUserPasswordStore<TUser> GetPasswordStore()
return cast;
}

private void ThrowIfDisposed()
protected void ThrowIfDisposed()
{
if (_disposed)
{
Expand Down

0 comments on commit 41fa99e

Please sign in to comment.