Skip to content

Commit

Permalink
fix: adjust privacy of internal methods
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Feb 10, 2021
1 parent 88b8326 commit 4ef480e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AutoCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ public void ResetLockOut(ulong userID)
/// Destroy the temporary code lock for the given player.
/// </summary>
/// <param name="player"></param>
public void DestoryTempCodeLock(BasePlayer player)
private void DestoryTempCodeLock(BasePlayer player)
{
// Code lock for player exists? Remove it.
if (tempCodeLocks.ContainsKey(player))
Expand All @@ -497,7 +497,7 @@ public void DestoryTempCodeLock(BasePlayer player)
/// <summary>
/// Unsubscribe from things that there is not point currently being subscribed to.
/// </summary>
public void UnsubscribeFromUnneedHooks()
private void UnsubscribeFromUnneedHooks()
{
// No point listing for code lock codes if we aren't expecting any.
if (tempCodeLocks.Count < 1)
Expand Down

0 comments on commit 4ef480e

Please sign in to comment.