40 FxCop Warnings; good practice

This commit is contained in:
asayre 2010-12-23 09:18:45 +00:00
parent 3f535ea235
commit 34e3a88bfe
30 changed files with 45 additions and 49 deletions

View file

@ -2715,7 +2715,7 @@ namespace Server.Network
}
}
public class AttributeNormalizer
public static class AttributeNormalizer
{
private static int m_Maximum = 25;
private static bool m_Enabled = true;
@ -3997,7 +3997,7 @@ namespace Server.Network
get{ return m_PacketID; }
}
public Packet( int packetID )
protected Packet( int packetID )
{
m_PacketID = packetID;
@ -4015,7 +4015,7 @@ namespace Server.Network
m_Stream.Write( (short) 0 );
}
public Packet( int packetID, int length )
protected Packet( int packetID, int length )
{
m_PacketID = packetID;
m_Length = length;