40 FxCop Warnings; good practice
This commit is contained in:
parent
3f535ea235
commit
34e3a88bfe
30 changed files with 45 additions and 49 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue