Removes implicit this.

This commit is contained in:
Kamron Batman 2018-09-14 12:56:58 -07:00
parent 04b4cfe75b
commit 83dcf536d8
533 changed files with 2804 additions and 2806 deletions

View file

@ -1440,7 +1440,7 @@ namespace Server
public void Worker()
{
AsyncWriter.m_ThreadCount++;
m_ThreadCount++;
int lastCount = 0;
@ -1459,9 +1459,9 @@ namespace Server
if ( m_Owner.m_Closed )
m_Owner.m_File.Close();
AsyncWriter.m_ThreadCount--;
m_ThreadCount--;
if (AsyncWriter.m_ThreadCount <= 0)
if (m_ThreadCount <= 0)
World.NotifyDiskWriteComplete();
}
}