Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/DikesDesign/DesignCalculatorShoulderPerPoint.cs =================================================================== diff -u -r6404 -r7077 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/DikesDesign/DesignCalculatorShoulderPerPoint.cs (.../DesignCalculatorShoulderPerPoint.cs) (revision 6404) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/DikesDesign/DesignCalculatorShoulderPerPoint.cs (.../DesignCalculatorShoulderPerPoint.cs) (revision 7077) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2025. All rights reserved. +// Copyright (C) Stichting Deltares 2026. All rights reserved. // // This file is part of the Dam Engine. // @@ -118,8 +118,8 @@ desiredShoulderHeight = Math.Max(desiredShoulderHeight, minimumShoulderElevation); } - bool isNewShoulderSameAsOriginal = ((Math.Abs(desiredShoulderLength - orgShoulderLength) < toleranceShoulderChanges) && - (Math.Abs(desiredShoulderHeight - orgShoulderHeight) < toleranceShoulderChanges)); + bool isNewShoulderSameAsOriginal = (Math.Abs(desiredShoulderLength - orgShoulderLength) < toleranceShoulderChanges) && + (Math.Abs(desiredShoulderHeight - orgShoulderHeight) < toleranceShoulderChanges); SurfaceLine2 newSurfaceLine; if (isNewShoulderSameAsOriginal) {