changed type of profile counters from int to long
fixed $Id$ in file headers
This commit is contained in:
parent
5c64b1754c
commit
ea4b699cb9
5 changed files with 13 additions and 13 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* copyright : (C) The RunUO Software Team
|
||||
* email : info@runuo.com
|
||||
*
|
||||
* $Id: PacketProfile.cs 4 2006-06-15 04:28:39Z mark $
|
||||
* $Id$
|
||||
*
|
||||
***************************************************************************/
|
||||
|
||||
|
|
@ -40,7 +40,7 @@ namespace Server.Diagnostics {
|
|||
|
||||
private string _name;
|
||||
|
||||
private int _count;
|
||||
private long _count;
|
||||
|
||||
private TimeSpan _totalTime;
|
||||
private TimeSpan _peakTime;
|
||||
|
|
@ -53,7 +53,7 @@ namespace Server.Diagnostics {
|
|||
}
|
||||
}
|
||||
|
||||
public int Count {
|
||||
public long Count {
|
||||
get {
|
||||
return _count;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue