Index: Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocation.cs
===================================================================
diff -u -re1d4d3fe987bfa6504703952ea0dbd8a18f5a698 -r533cfb6b8d9c3e198204d1c6ee022b79049e6d43
--- Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocation.cs (.../HydraulicBoundaryLocation.cs) (revision e1d4d3fe987bfa6504703952ea0dbd8a18f5a698)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocation.cs (.../HydraulicBoundaryLocation.cs) (revision 533cfb6b8d9c3e198204d1c6ee022b79049e6d43)
@@ -73,7 +73,7 @@
get
{
return DesignWaterLevelOutput == null
- ? new RoundedDouble(2, double.NaN)
+ ? (RoundedDouble) double.NaN
: DesignWaterLevelOutput.Result;
}
set
@@ -106,20 +106,16 @@
}
///
- /// Gets or sets the wave height of the hydraulic boundary location.
+ /// Gets the wave height of the hydraulic boundary location.
///
public RoundedDouble WaveHeight
{
get
{
return WaveHeightOutput == null
- ? new RoundedDouble(2, double.NaN)
+ ? (RoundedDouble) double.NaN
: WaveHeightOutput.Result;
}
- set
- {
- WaveHeightOutput = new HydraulicBoundaryLocationOutput(value, 0, 0, 0, 0, CalculationConvergence.NotCalculated);
- }
}
///