Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/LogNormalDistributionDesignVariableProperties.cs
===================================================================
diff -u -rb41ef82a44c84f0211937d1b7f22794ad8a45941 -r0eef796eb9da995e56fd1e4a61296ec3c25dcfad
--- Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/LogNormalDistributionDesignVariableProperties.cs (.../LogNormalDistributionDesignVariableProperties.cs) (revision b41ef82a44c84f0211937d1b7f22794ad8a45941)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/PropertyClasses/LogNormalDistributionDesignVariableProperties.cs (.../LogNormalDistributionDesignVariableProperties.cs) (revision 0eef796eb9da995e56fd1e4a61296ec3c25dcfad)
@@ -24,7 +24,6 @@
using Core.Common.Utils.Attributes;
using Ringtoets.Common.Data.Probabilistics;
using Ringtoets.Common.Forms.PropertyClasses;
-using Ringtoets.Piping.Data;
using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources;
namespace Ringtoets.Piping.Forms.PropertyClasses
@@ -40,27 +39,21 @@
/// The to create the properties for.
/// Thrown when is null.
public LogNormalDistributionDesignVariableProperties(DesignVariable designVariable)
- : this(DistributionPropertiesReadOnly.All, designVariable, null, null, null) {}
+ : this(DistributionPropertiesReadOnly.All, designVariable, null) {}
///
/// Creates a new .
///
/// Indicates which properties, if any, should be marked as read-only.
/// The to create the properties for.
- /// The calculation the belongs to.
- /// The calculation input the belongs to.
/// The handler responsible for handling effects of a property change.
/// Thrown when is null
/// or when any number of properties in this class is editable and any other parameter is null.
public LogNormalDistributionDesignVariableProperties(DistributionPropertiesReadOnly propertiesReadOnly,
DesignVariable designVariable,
- PipingCalculationScenario calculation,
- PipingInput propertyOwner,
IObservablePropertyChangeHandler handler)
: base(propertiesReadOnly,
designVariable,
- calculation,
- propertyOwner,
handler) {}
public override string DistributionType { get; } = RingtoetsCommonFormsResources.DistributionType_LogNormal;