Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/Gauges/GaugePLLine.cs =================================================================== diff -u -r1117 -r1118 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/Gauges/GaugePLLine.cs (.../GaugePLLine.cs) (revision 1117) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/Gauges/GaugePLLine.cs (.../GaugePLLine.cs) (revision 1118) @@ -57,14 +57,14 @@ public GaugePlLine(PlLineType plLineType) : this() { - this.PLLineType = plLineType; + this.PlLineType = plLineType; } - public PlLineType PLLineType { get; set; } + public PlLineType PlLineType { get; set; } public override string ToString() { - string result = String.Format("{0} | ", this.PLLineType.ToString()); + string result = String.Format("{0} | ", this.PlLineType.ToString()); foreach (GaugePlLinePoint point in this.Points) result += point.ToString() + ", ";