Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresInput.cs =================================================================== diff -u -r9e3639e810a22019da1a9fdf5aa5c433a43520c1 -rf2053e36f2f245041599654de6aff095721e81bf --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresInput.cs (.../ClosingStructuresInput.cs) (revision 9e3639e810a22019da1a9fdf5aa5c433a43520c1) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructuresInput.cs (.../ClosingStructuresInput.cs) (revision f2053e36f2f245041599654de6aff095721e81bf) @@ -147,12 +147,12 @@ UpdateForeshoreProperties(); } - private bool ValidProbabilityValue(double probability) + private static bool ValidProbabilityValue(double probability) { return !double.IsNaN(probability) && probability <= 1 && probability >= 0; } - #region Structure properties + #region Structure /// /// Gets or sets the closing structure. @@ -166,7 +166,7 @@ #endregion - #region Model Factors + #region Model factors /// /// Gets or sets the model factor for the super critical flow. @@ -217,7 +217,7 @@ #endregion - #region Hydraulic load and data properties + #region Hydraulic data public HydraulicBoundaryLocation HydraulicBoundaryLocation { get; set; }