Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/SlipCircleDefinition.cs =================================================================== diff -u -r6968 -r6980 --- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/SlipCircleDefinition.cs (.../SlipCircleDefinition.cs) (revision 6968) +++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/SlipCircleDefinition.cs (.../SlipCircleDefinition.cs) (revision 6980) @@ -456,22 +456,22 @@ private bool IsStabilityBishop() { - return ((Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityInside || - Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityOutside) && - (StabilityModelType) Specification.CalculationModel == StabilityModelType.Bishop); + return (Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityInside || + Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityOutside) && + (StabilityModelType) Specification.CalculationModel == StabilityModelType.Bishop; } private bool IsStabilityUpliftVan() { - return ((Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityInside || - Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityOutside) && - (StabilityModelType) Specification.CalculationModel == StabilityModelType.UpliftVan); + return (Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityInside || + Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityOutside) && + (StabilityModelType) Specification.CalculationModel == StabilityModelType.UpliftVan; } private bool IsStabilityBishopUpliftVan() { - return ((Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityInside || - Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityOutside) && - (StabilityModelType) Specification.CalculationModel == StabilityModelType.BishopUpliftVan); + return (Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityInside || + Specification.FailureMechanismSystemType == FailureMechanismSystemType.StabilityOutside) && + (StabilityModelType) Specification.CalculationModel == StabilityModelType.BishopUpliftVan; } } \ No newline at end of file