mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Optimized usings
* Shortened type references * Removed redundant 'this' qualifier
This commit is contained in:
@@ -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 + ">";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user