Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsCalculation.cs =================================================================== diff -u -r4c394b22a72798514dbbba8935f8683147da0ef3 -r17b11c850b35c3ea99150ba25098b5b769b58f4f --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsCalculation.cs (.../GrassCoverErosionInwardsCalculation.cs) (revision 4c394b22a72798514dbbba8935f8683147da0ef3) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/GrassCoverErosionInwardsCalculation.cs (.../GrassCoverErosionInwardsCalculation.cs) (revision 17b11c850b35c3ea99150ba25098b5b769b58f4f) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; using Core.Common.Base; using Ringtoets.Common.Data; using Ringtoets.Common.Data.Calculation; @@ -30,7 +29,7 @@ /// /// This class holds information about a calculation for the . /// - public class GrassCoverErosionInwardsCalculation : Observable, ICalculation, ICloneable + public class GrassCoverErosionInwardsCalculation : Observable, ICalculation { /// /// Creates a new instance of . @@ -64,20 +63,6 @@ } } - /// - /// Returns a string that represents the current object. - /// - /// The name of this calculation. - public override string ToString() - { - return Name; - } - - public void ClearOutput() - { - Output = null; - } - public object Clone() { var clone = (GrassCoverErosionInwardsCalculation) MemberwiseClone(); @@ -92,5 +77,19 @@ return clone; } + + /// + /// Returns a string that represents the current object. + /// + /// The name of this calculation. + public override string ToString() + { + return Name; + } + + public void ClearOutput() + { + Output = null; + } } } \ No newline at end of file