Fixes body expression style.

This commit is contained in:
Kamron Batman 2018-09-14 08:46:14 -07:00
parent 3f0a72a62f
commit 33f5e77a24
957 changed files with 7424 additions and 15973 deletions

View file

@ -33,11 +33,11 @@ namespace Server.Misc
string m_Country_LocalName;
bool m_HasLocalInfo;
public string Code{ get{ return m_Code; } }
public string Language{ get{ return m_Language; } }
public string Country{ get{ return m_Country; } }
public string Language_LocalName{ get{ return m_Language_LocalName; } }
public string Country_LocalName{ get{ return m_Country_LocalName; } }
public string Code => m_Code;
public string Language => m_Language;
public string Country => m_Country;
public string Language_LocalName => m_Language_LocalName;
public string Country_LocalName => m_Country_LocalName;
public InternationalCode( string code, string language, string country ) : this( code, language, country, null, null )
{
@ -316,8 +316,8 @@ namespace Server.Misc
private string m_Code;
private int m_Count;
public string Code{ get{ return m_Code; } }
public int Count{ get{ return m_Count; } }
public string Code => m_Code;
public int Count => m_Count;
public InternationalCodeCounter( string code )
{