Index: Ringtoets/Common/src/Ringtoets.Common.Data/ReferenceLine.cs =================================================================== diff -u -rdd7a5cfb0343fa2350b4143232b94cbba37612e9 -r249fd5e4604012895724a9d7df67201332c9e7dc --- Ringtoets/Common/src/Ringtoets.Common.Data/ReferenceLine.cs (.../ReferenceLine.cs) (revision dd7a5cfb0343fa2350b4143232b94cbba37612e9) +++ Ringtoets/Common/src/Ringtoets.Common.Data/ReferenceLine.cs (.../ReferenceLine.cs) (revision 249fd5e4604012895724a9d7df67201332c9e7dc) @@ -25,10 +25,8 @@ using Core.Common.Base.Geometry; -using Ringtoets.Common.Data.Properties; +using RingtoetsCommonDataResources = Ringtoets.Common.Data.Properties.Resources; -using Resources = Core.Common.Base.Properties.Resources; - namespace Ringtoets.Common.Data { /// @@ -58,12 +56,12 @@ { if (newPoints == null) { - throw new ArgumentNullException("newPoints", Resources.ReferenceLine_SetGeometry_New_geometry_cannot_be_null); + throw new ArgumentNullException("newPoints", RingtoetsCommonDataResources.ReferenceLine_SetGeometry_New_geometry_cannot_be_null); } Point2D[] point2Ds = newPoints.ToArray(); if (point2Ds.Any(p => p == null)) { - throw new ArgumentException(Resources.ReferenceLine_SetGeometry_New_geometry_has_null_coordinate, "newPoints"); + throw new ArgumentException(RingtoetsCommonDataResources.ReferenceLine_SetGeometry_New_geometry_has_null_coordinate, "newPoints"); } Points = point2Ds;