Formatting cleanup.

This commit is contained in:
Jeff Ames
2009-10-01 01:00:09 +09:00
parent 33515c75e4
commit ee205e7e81
223 changed files with 875 additions and 930 deletions

View File

@@ -26,12 +26,12 @@
*/
namespace OpenSim.Region.ClientStack
{
{
/// <summary>
/// Represent throttle settings for a client stack. These settings are in bytes per second
/// </summary>
public class ThrottleSettings
{
{
/// <summary>
/// Minimum bytes per second that the throttle can be set to.
/// </summary>
@@ -39,13 +39,13 @@ namespace OpenSim.Region.ClientStack
/// <summary>
/// Maximum bytes per second that the throttle can be set to.
/// </summary>
/// </summary>
public int Max;
/// <summary>
/// Current bytes per second that the throttle should be set to.
/// </summary>
public int Current;
/// </summary>
public int Current;
public ThrottleSettings(int min, int max, int current)
{