Index: DamEngine/trunk/src/Deltares.DamEngine.TestHelpers/Factories/FactoryForSoilProfiles.cs =================================================================== diff -u -r3520 -r3855 --- DamEngine/trunk/src/Deltares.DamEngine.TestHelpers/Factories/FactoryForSoilProfiles.cs (.../FactoryForSoilProfiles.cs) (revision 3520) +++ DamEngine/trunk/src/Deltares.DamEngine.TestHelpers/Factories/FactoryForSoilProfiles.cs (.../FactoryForSoilProfiles.cs) (revision 3855) @@ -575,11 +575,6 @@ return soilProfile; } - private static string GetNewUniqueLayerName(SoilProfile1D soilProfile) - { - throw new System.NotImplementedException(); - } - /// /// Create two layer soil profile with pleistocene sand layer (no intermediate layer /// Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/PlLinesCreator/SensorPlLine1Creator.cs =================================================================== diff -u -r3522 -r3855 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/PlLinesCreator/SensorPlLine1Creator.cs (.../SensorPlLine1Creator.cs) (revision 3522) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/PlLinesCreator/SensorPlLine1Creator.cs (.../SensorPlLine1Creator.cs) (revision 3855) @@ -352,24 +352,5 @@ { get { return SensorLocation.SurfaceLine.CharacteristicPoints.GetGeometryPoint(CharacteristicPointType.DikeToeAtPolder).Z; } } - - /// - /// Gets the index of the insert position for a given value x in the line of points - /// - /// The line. - /// The x value. - /// - private int GetIndexOf(PlLine line, double xValue) - { - int index = 0; - foreach (var point in line.Points) - { - if (xValue > point.X) - index++; - else - break; - } - return index; - } } } \ No newline at end of file