40 FxCop Warnings; good practice
This commit is contained in:
parent
3f535ea235
commit
34e3a88bfe
30 changed files with 45 additions and 49 deletions
|
|
@ -36,7 +36,7 @@ namespace Server.Guilds
|
|||
{
|
||||
private int m_Id;
|
||||
|
||||
public BaseGuild( int Id )//serialization ctor
|
||||
protected BaseGuild( int Id )//serialization ctor
|
||||
{
|
||||
m_Id = Id;
|
||||
m_GuildList.Add( m_Id, this );
|
||||
|
|
@ -44,7 +44,7 @@ namespace Server.Guilds
|
|||
m_NextID = m_Id + 1;
|
||||
}
|
||||
|
||||
public BaseGuild()
|
||||
protected BaseGuild()
|
||||
{
|
||||
m_Id = m_NextID++;
|
||||
m_GuildList.Add( m_Id, this );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue