Removes implicit this.

This commit is contained in:
Kamron Batman 2018-09-14 12:56:58 -07:00
parent 04b4cfe75b
commit 83dcf536d8
533 changed files with 2804 additions and 2806 deletions

View file

@ -108,13 +108,13 @@ namespace Server.Guilds
private static InfoField<PlayerMobile>[] m_Fields =
new[]
{
new InfoField<PlayerMobile>( 1062955, 130, GuildRosterGump.NameComparer.Instance ), //Name
new InfoField<PlayerMobile>( 1062956, 80, GuildRosterGump.RankComparer.Instance ), //Rank
new InfoField<PlayerMobile>( 1062952, 80, GuildRosterGump.LastOnComparer.Instance), //Last On
new InfoField<PlayerMobile>( 1062953, 150, GuildRosterGump.TitleComparer.Instance ) //Guild Title
new InfoField<PlayerMobile>( 1062955, 130, NameComparer.Instance ), //Name
new InfoField<PlayerMobile>( 1062956, 80, RankComparer.Instance ), //Rank
new InfoField<PlayerMobile>( 1062952, 80, LastOnComparer.Instance), //Last On
new InfoField<PlayerMobile>( 1062953, 150, TitleComparer.Instance ) //Guild Title
};
public GuildRosterGump( PlayerMobile pm, Guild g ) : this( pm, g, GuildRosterGump.LastOnComparer.Instance, false, "", 0 )
public GuildRosterGump( PlayerMobile pm, Guild g ) : this( pm, g, LastOnComparer.Instance, false, "", 0 )
{
}