Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Settings/DesignTableSettings.cs
===================================================================
diff -u -r67aa825f436900190ff7324c7ad0d30338dda6ff -r425779031697be07adab6d24fe422c97898f73a2
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Settings/DesignTableSettings.cs (.../DesignTableSettings.cs) (revision 67aa825f436900190ff7324c7ad0d30338dda6ff)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Settings/DesignTableSettings.cs (.../DesignTableSettings.cs) (revision 425779031697be07adab6d24fe422c97898f73a2)
@@ -28,19 +28,16 @@
{
private readonly double valueMin;
private readonly double valueMax;
- private readonly double faultTreeModelId;
///
/// Creates a new instance of the class.
///
/// The minimum value to use while iterating to a target probability.
/// The maximum value to use while iterating to a target probability.
- /// The fault tree model id.
- public DesignTableSettings(double valueMin, double valueMax, double faultTreeModelId)
+ public DesignTableSettings(double valueMin, double valueMax)
{
this.valueMin = valueMin;
this.valueMax = valueMax;
- this.faultTreeModelId = faultTreeModelId;
}
///
@@ -66,16 +63,5 @@
return valueMax;
}
}
-
- ///
- /// Gets the fault tree model id.
- ///
- public double FaultTreeModelId
- {
- get
- {
- return faultTreeModelId;
- }
- }
}
}
\ No newline at end of file