removed initial capacity to List and ArrayList where inappropriate

This commit is contained in:
krrios 2007-04-25 01:06:43 +00:00
parent e15ed963d8
commit a8acb6bd9d
7 changed files with 100 additions and 110 deletions

View file

@ -83,7 +83,7 @@ namespace Server.Multis
if ( (acct.LastLogin + TimeSpan.FromDays( 90.0 )) < DateTime.Now )
return DecayType.Condemned;
List<BaseHouse> allHouses = new List<BaseHouse>( 2 );
List<BaseHouse> allHouses = new List<BaseHouse>();
for ( int i = 0; i < acct.Length; ++i )
{