Index: Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/IDistribution.cs =================================================================== diff -u -r332fd224ce5cd9c737e72f945271c52ae6d64c0d -rab330857f161d3f884db508d80a2dd0ade36434f --- Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/IDistribution.cs (.../IDistribution.cs) (revision 332fd224ce5cd9c737e72f945271c52ae6d64c0d) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Probabilistics/IDistribution.cs (.../IDistribution.cs) (revision ab330857f161d3f884db508d80a2dd0ade36434f) @@ -28,17 +28,17 @@ /// This object represents a probabilistic distribution. /// /// - public interface IDistribution : ICloneable + public interface IDistribution : IDistributionBase { /// /// Gets or sets the mean (expected value, E(X)) of the distribution. /// - RoundedDouble Mean { get; set; } + new RoundedDouble Mean { get; set; } /// /// Gets or sets the standard deviation (square root of the Var(X)) of the distribution. /// /// Standard deviation is less than 0. - RoundedDouble StandardDeviation { get; set; } + new RoundedDouble StandardDeviation { get; set; } } } \ No newline at end of file