remove mono conditionals that no longer seem to be necessary

This commit is contained in:
Mark Sturgill 2013-10-30 12:26:51 -07:00
parent ad5c172687
commit b035a256b6
2 changed files with 0 additions and 17 deletions

View file

@ -24,11 +24,7 @@ namespace Server.Accounting
public static ICollection<IAccount> GetAccounts()
{
#if !MONO
return m_Accounts.Values;
#else
return new List<IAccount>( m_Accounts.Values );
#endif
}
public static IAccount GetAccount( string username )