Index: Ringtoets/Common/src/Ringtoets.Common.Service/IllustrationPoints/StochastConverter.cs
===================================================================
diff -u -r6a60e0e3f676c71e253ad41839519c18dd641e9e -rc2c7e9621863d470ddd3a1d5c0e4913844066aae
--- Ringtoets/Common/src/Ringtoets.Common.Service/IllustrationPoints/StochastConverter.cs (.../StochastConverter.cs) (revision 6a60e0e3f676c71e253ad41839519c18dd641e9e)
+++ Ringtoets/Common/src/Ringtoets.Common.Service/IllustrationPoints/StochastConverter.cs (.../StochastConverter.cs) (revision c2c7e9621863d470ddd3a1d5c0e4913844066aae)
@@ -22,7 +22,7 @@
using System;
using Ringtoets.Common.Data.Hydraulics.IllustrationPoints;
using HydraStochast = Ringtoets.HydraRing.Calculation.Data.Output.IllustrationPoints.Stochast;
-using HydraSubmechanismIllustrationPointStochast = Ringtoets.HydraRing.Calculation.Data.Output.IllustrationPoints.SubmechanismIllustrationPointStochast;
+using HydraSubMechanismIllustrationPointStochast = Ringtoets.HydraRing.Calculation.Data.Output.IllustrationPoints.SubMechanismIllustrationPointStochast;
namespace Ringtoets.Common.Service.IllustrationPoints
{
@@ -49,23 +49,25 @@
}
///
- /// Creates a new instance of based on the information of .
+ /// Creates a new instance of
+ /// based on the information of .
///
- /// The to base the
- /// to create on.
+ /// The
+ /// to base the to create on.
/// The newly created .
- /// Thrown when
+ /// Thrown when
/// is null.
- public static SubMechanismIllustrationPointStochast CreateSubMechanismIllustrationStochast(HydraSubmechanismIllustrationPointStochast hydraSubmechanismIllustrationPointStochast)
+ public static SubMechanismIllustrationPointStochast CreateSubMechanismIllustrationStochast(
+ HydraSubMechanismIllustrationPointStochast hydraSubMechanismIllustrationPointStochast)
{
- if (hydraSubmechanismIllustrationPointStochast == null)
+ if (hydraSubMechanismIllustrationPointStochast == null)
{
- throw new ArgumentNullException(nameof(hydraSubmechanismIllustrationPointStochast));
+ throw new ArgumentNullException(nameof(hydraSubMechanismIllustrationPointStochast));
}
- return new SubMechanismIllustrationPointStochast(hydraSubmechanismIllustrationPointStochast.Name,
- hydraSubmechanismIllustrationPointStochast.Duration,
- hydraSubmechanismIllustrationPointStochast.Alpha,
- hydraSubmechanismIllustrationPointStochast.Realization);
+ return new SubMechanismIllustrationPointStochast(hydraSubMechanismIllustrationPointStochast.Name,
+ hydraSubMechanismIllustrationPointStochast.Duration,
+ hydraSubMechanismIllustrationPointStochast.Alpha,
+ hydraSubMechanismIllustrationPointStochast.Realization);
}
}
}
\ No newline at end of file