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

@ -15,20 +15,17 @@ namespace Server.Commands
public BaseCommandImplementor Scope
{
get{ return m_Scope; }
set{ m_Scope = value; }
get => m_Scope;
set => m_Scope = value;
}
public string Condition
{
get{ return m_Condition; }
set{ m_Condition = value; }
get => m_Condition;
set => m_Condition = value;
}
public ArrayList BatchCommands
{
get{ return m_BatchCommands; }
}
public ArrayList BatchCommands => m_BatchCommands;
public Batch()
{
@ -200,14 +197,14 @@ namespace Server.Commands
public string Command
{
get{ return m_Command; }
set{ m_Command = value; }
get => m_Command;
set => m_Command = value;
}
public string Object
{
get{ return m_Object; }
set{ m_Object = value; }
get => m_Object;
set => m_Object = value;
}
public void GetDetails( out string command, out string argString, out string[] args )