* Optimized usings

* Shortened type references
* Removed redundant 'this' qualifier
This commit is contained in:
lbsa71
2007-10-30 09:05:31 +00:00
parent c32d1f0562
commit 67e12b95ea
353 changed files with 15459 additions and 10338 deletions

View File

@@ -35,7 +35,6 @@ namespace OpenSim.Region.Physics.Manager
public PhysicsVector()
{
}
public PhysicsVector(float x, float y, float z)
@@ -49,7 +48,7 @@ namespace OpenSim.Region.Physics.Manager
public override string ToString()
{
return "<" + this.X + "," + this.Y + "," + this.Z + ">";
return "<" + X + "," + Y + "," + Z + ">";
}
}
}
}