Replaces types with built-in types.
This commit is contained in:
parent
fee83ce560
commit
22ab83ea9e
98 changed files with 248 additions and 248 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue