Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.IO/DikeProfiles/DikeProfileLocation.cs =================================================================== diff -u -raf83c5308c30a462589f45eecd5ba0dfac0cda00 -r0eafbd198165fdfb8a3f9fabfa29919dd573d274 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.IO/DikeProfiles/DikeProfileLocation.cs (.../DikeProfileLocation.cs) (revision af83c5308c30a462589f45eecd5ba0dfac0cda00) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.IO/DikeProfiles/DikeProfileLocation.cs (.../DikeProfileLocation.cs) (revision 0eafbd198165fdfb8a3f9fabfa29919dd573d274) @@ -39,23 +39,6 @@ /// The actual location. public DikeProfileLocation(string idValue, string nameValue, double x0Value, Point2D pointValue) { - if (idValue == null) - { - throw new ArgumentException(Resources.DikeProfileLocation_Constructor_Invalid_Id); - } - if (nameValue == null) - { - throw new ArgumentException(Resources.DikeProfileLocation_Constructor_Invalid_Name); - } - if (double.IsNaN(x0Value)) - { - throw new ArgumentException(Resources.DikeProfileLocation_Constructor_Invalid_X0); - } - if (pointValue == null) - { - throw new ArgumentException(Resources.DikeProfileLocation_Constructor_Invalid_Point); - } - Id = idValue; Name = nameValue; X0 = x0Value;