Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingInput.cs =================================================================== diff -u -r240a0a7285d67b54d0c3a992a0e60856c2e9855d -rae817948168b51faa0a6758efc4b6d4fc915a9d4 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingInput.cs (.../PipingInput.cs) (revision 240a0a7285d67b54d0c3a992a0e60856c2e9855d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingInput.cs (.../PipingInput.cs) (revision ae817948168b51faa0a6758efc4b6d4fc915a9d4) @@ -58,7 +58,7 @@ { if (generalInputParameters == null) { - throw new ArgumentNullException("generalInputParameters"); + throw new ArgumentNullException(nameof(generalInputParameters)); } this.generalInputParameters = generalInputParameters; @@ -256,8 +256,8 @@ if (tempExitPointL <= ExitPointL) { - EntryPointL = (RoundedDouble)tempEntryPointL; - ExitPointL = (RoundedDouble)tempExitPointL; + EntryPointL = (RoundedDouble) tempEntryPointL; + ExitPointL = (RoundedDouble) tempExitPointL; } else {