Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/Gauges/Gauge.cs =================================================================== diff -u -r3893 -r4000 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/Gauges/Gauge.cs (.../Gauge.cs) (revision 3893) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/Gauges/Gauge.cs (.../Gauge.cs) (revision 4000) @@ -26,14 +26,14 @@ public class Gauge { public virtual string Name { get; set; } - public virtual Location Location{ get; set; } + public virtual Location Location { get; set; } public virtual double LocalX { get; set; } public double? Value { get; set; } public override string ToString() { - return String.Format("{0} @ Location {1} | Local X={2}", this.Name, this.Location != null ? this.Location.Name : "?", this.LocalX); + return String.Format("{0} @ Location {1} | Local X={2}", Name, Location != null ? Location.Name : "?", LocalX); } } -} +} \ No newline at end of file