Replaces types with built-in types.

This commit is contained in:
Kamron Batman 2018-09-14 13:22:16 -07:00
parent fee83ce560
commit 22ab83ea9e
98 changed files with 248 additions and 248 deletions

View file

@ -222,7 +222,7 @@ namespace Server.Network
if ( m_Index >= m_Size )
{
m_Index += fixedLength;
return String.Empty;
return string.Empty;
}
int bound = m_Index + fixedLength;
@ -270,7 +270,7 @@ namespace Server.Network
public string ReadUTF8StringSafe()
{
if ( m_Index >= m_Size )
return String.Empty;
return string.Empty;
int count = 0;
int index = m_Index;
@ -310,7 +310,7 @@ namespace Server.Network
public string ReadUTF8String()
{
if ( m_Index >= m_Size )
return String.Empty;
return string.Empty;
int count = 0;
int index = m_Index;