Index: Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs =================================================================== diff -u -r248229db928c9e5556be704ed274226f80b4ef19 -rce190360da30edf73fb464cc0fea1d9a795aa5d4 --- Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs (.../WaveHeightCalculationService.cs) (revision 248229db928c9e5556be704ed274226f80b4ef19) +++ Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs (.../WaveHeightCalculationService.cs) (revision ce190360da30edf73fb464cc0fea1d9a795aa5d4) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using log4net; using Ringtoets.HydraRing.Calculation.Data.Input.Hydraulics; using Ringtoets.HydraRing.Data; @@ -30,7 +29,6 @@ /// public class WaveHeightCalculationService : HydraulicBoundaryLocationCalculationService { - private static readonly ILog log = LogManager.GetLogger(typeof(WaveHeightCalculationService)); private static IHydraulicBoundaryLocationCalculationService instance; /// @@ -48,7 +46,7 @@ } } - protected override WaveHeightCalculationInput CreateInput(IHydraulicBoundaryLocation hydraulicBoundaryLocation, double norm) + protected override WaveHeightCalculationInput CreateInput(HydraulicBoundaryLocation hydraulicBoundaryLocation, double norm) { return new WaveHeightCalculationInput(1, hydraulicBoundaryLocation.Id, norm); }