Index: Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/IClearIllustrationPointsOfCalculationChangeHandler.cs
===================================================================
diff -u -r2512f89b75968a81c21303ee0faab03b85b1d69a -rf5f388927eb444d2d075724697630cb83c18300b
--- Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/IClearIllustrationPointsOfCalculationChangeHandler.cs (.../IClearIllustrationPointsOfCalculationChangeHandler.cs) (revision 2512f89b75968a81c21303ee0faab03b85b1d69a)
+++ Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/IClearIllustrationPointsOfCalculationChangeHandler.cs (.../IClearIllustrationPointsOfCalculationChangeHandler.cs) (revision f5f388927eb444d2d075724697630cb83c18300b)
@@ -19,12 +19,10 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-using Core.Common.Base;
-
namespace Riskeer.Common.Forms.ChangeHandlers
{
///
- /// Interface for an object that can properly clear a illustration points of a single calculation.
+ /// Interface for handling clearing illustration point results from a calculation.
///
public interface IClearIllustrationPointsOfCalculationChangeHandler
{
Index: Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/IClearIllustrationPointsOfCalculationCollectionChangeHandler.cs
===================================================================
diff -u -r6d18571198270d2bce752be57493a447fee10680 -rf5f388927eb444d2d075724697630cb83c18300b
--- Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/IClearIllustrationPointsOfCalculationCollectionChangeHandler.cs (.../IClearIllustrationPointsOfCalculationCollectionChangeHandler.cs) (revision 6d18571198270d2bce752be57493a447fee10680)
+++ Riskeer/Common/src/Riskeer.Common.Forms/ChangeHandlers/IClearIllustrationPointsOfCalculationCollectionChangeHandler.cs (.../IClearIllustrationPointsOfCalculationCollectionChangeHandler.cs) (revision f5f388927eb444d2d075724697630cb83c18300b)
@@ -25,7 +25,7 @@
namespace Riskeer.Common.Forms.ChangeHandlers
{
///
- /// Interface for an object that can properly clear a illustration points from a collection of calculations.
+ /// Interface for handling clearing illustration point results from a collection of calculations.
///
public interface IClearIllustrationPointsOfCalculationCollectionChangeHandler
{
Index: Riskeer/Common/src/Riskeer.Common.Util/IllustrationPointsHelper.cs
===================================================================
diff -u -rd4fb475f3f6e36b919118b6c1ed100ce45dbf356 -rf5f388927eb444d2d075724697630cb83c18300b
--- Riskeer/Common/src/Riskeer.Common.Util/IllustrationPointsHelper.cs (.../IllustrationPointsHelper.cs) (revision d4fb475f3f6e36b919118b6c1ed100ce45dbf356)
+++ Riskeer/Common/src/Riskeer.Common.Util/IllustrationPointsHelper.cs (.../IllustrationPointsHelper.cs) (revision f5f388927eb444d2d075724697630cb83c18300b)
@@ -33,12 +33,11 @@
public static class IllustrationPointsHelper
{
///
- /// Determines whether a collection of
- /// contain calculations with illustration point results.
+ /// Determines whether a in
+ /// has illustration point results.
///
/// The calculations to check.
- /// true if contain calculations with
- /// illustration point results, false otherwise.
+ /// true when one or more calculations have illustration point results, false otherwise.
/// Thrown when is null.
public static bool HasIllustrationPoints(IEnumerable calculations)
{
@@ -51,12 +50,11 @@
}
///
- /// Determines whether a collection of contain
- /// calculations with illustration point results.
+ /// Determines whether an in
+ /// has illustration point results.
///
/// The calculations to check.
- /// true if contain calculations with
- /// illustration point results, false otherwise.
+ /// true when one or more calculations have illustration point results, false otherwise.
/// Thrown when is null.
public static bool HasIllustrationPoints(IEnumerable calculations)
{
@@ -72,7 +70,7 @@
/// Determines whether a has illustration point results.
///
/// The calculation to check.
- /// true if has illustration point results, false otherwise.
+ /// true when has illustration point results, false otherwise.
/// Thrown when is null.
public static bool HasIllustrationPoints(IStructuresCalculation calculation)
{