Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -66,7 +66,7 @@ namespace Server.Engines.Help
|
|||
|
||||
private Queue<SpeechLogEntry> m_Queue;
|
||||
|
||||
public int Count{ get{ return m_Queue.Count; } }
|
||||
public int Count => m_Queue.Count;
|
||||
|
||||
public SpeechLog()
|
||||
{
|
||||
|
|
@ -131,9 +131,9 @@ namespace Server.Engines.Help
|
|||
private string m_Speech;
|
||||
private DateTime m_Created;
|
||||
|
||||
public Mobile From{ get{ return m_From; } }
|
||||
public string Speech{ get{ return m_Speech; } }
|
||||
public DateTime Created{ get{ return m_Created; } }
|
||||
public Mobile From => m_From;
|
||||
public string Speech => m_Speech;
|
||||
public DateTime Created => m_Created;
|
||||
|
||||
public SpeechLogEntry( Mobile from, string speech )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue