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

@ -35,14 +35,8 @@ namespace Server
public static Assembly[] Assemblies
{
get
{
return m_Assemblies;
}
set
{
m_Assemblies = value;
}
get => m_Assemblies;
set => m_Assemblies = value;
}
private static List<string> m_AdditionalReferences = new List<string>();
@ -728,9 +722,9 @@ namespace Server
private Type[] m_Types;
private TypeTable m_Names, m_FullNames;
public Type[] Types { get { return m_Types; } }
public TypeTable Names { get { return m_Names; } }
public TypeTable FullNames { get { return m_FullNames; } }
public Type[] Types => m_Types;
public TypeTable Names => m_Names;
public TypeTable FullNames => m_FullNames;
public Type GetTypeByName( string name, bool ignoreCase )
{