Index: Application/Ringtoets/src/Application.Ringtoets.Storage/FingerprintHelper.cs
===================================================================
diff -u -r3fb0df0ed6e64657154700ee7706e035d5bf99f5 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Application/Ringtoets/src/Application.Ringtoets.Storage/FingerprintHelper.cs (.../FingerprintHelper.cs) (revision 3fb0df0ed6e64657154700ee7706e035d5bf99f5)
+++ Application/Ringtoets/src/Application.Ringtoets.Storage/FingerprintHelper.cs (.../FingerprintHelper.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -74,7 +74,7 @@
///
/// The first array, cannot be null.
/// The second array, cannot be null.
- /// True if the two fingerprints are equal, false otherwise.
+ /// true if the two fingerprints are equal, false otherwise.
public static bool AreEqual(byte[] array1, byte[] array2)
{
if (array1.Length != array2.Length)
Index: Core/Common/src/Core.Common.Base/Geometry/Math2D.cs
===================================================================
diff -u -ra1f0bed43a1bdeeda53ac505a77c065ca6fd7c12 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Base/Geometry/Math2D.cs (.../Math2D.cs) (revision a1f0bed43a1bdeeda53ac505a77c065ca6fd7c12)
+++ Core/Common/src/Core.Common.Base/Geometry/Math2D.cs (.../Math2D.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -158,7 +158,7 @@
///
/// The first point.
/// The second point.
- /// True when the points are equal. False otherwise.
+ /// true when the points are equal, false otherwise.
/// Thrown when or
/// is null.
public static bool AreEqualPoints(Point2D point1, Point2D point2)
@@ -353,7 +353,7 @@
/// The second 2D vector.
/// The vector from the tail of
/// to the tail of .
- /// True if the vectors are collinear, false otherwise.
+ /// true if the vectors are collinear, false otherwise.
private static bool AreCollinear(Vector vector1, Vector vector2, Vector tailsVector)
{
return Math.Abs(PerpDotProduct(vector1, tailsVector)) < epsilonForComparisons &&
Index: Core/Common/src/Core.Common.Base/IO/FileImporterBase.cs
===================================================================
diff -u -r8e74b5d6680386fce48486c8253b62331f7d7055 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Base/IO/FileImporterBase.cs (.../FileImporterBase.cs) (revision 8e74b5d6680386fce48486c8253b62331f7d7055)
+++ Core/Common/src/Core.Common.Base/IO/FileImporterBase.cs (.../FileImporterBase.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -133,7 +133,7 @@
///
/// This method returns the result of the import action.
///
- /// True if the import was successful, false if otherwise.
+ /// true if the import was successful, false if otherwise.
/// Implementations of this method are allowed to throw exceptions of any kind.
protected abstract bool OnImport();
Index: Core/Common/src/Core.Common.Base/ObservableUniqueItemCollectionWithSourcePath.cs
===================================================================
diff -u -r569a286badd9b3494f5465cc2767a8cf6a77f618 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Base/ObservableUniqueItemCollectionWithSourcePath.cs (.../ObservableUniqueItemCollectionWithSourcePath.cs) (revision 569a286badd9b3494f5465cc2767a8cf6a77f618)
+++ Core/Common/src/Core.Common.Base/ObservableUniqueItemCollectionWithSourcePath.cs (.../ObservableUniqueItemCollectionWithSourcePath.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -106,8 +106,8 @@
/// Removes the first occurrence of in the collection.
///
/// The item of type to be removed.
- /// True if the was successfully removed from the collection;
- /// False if otherwise or if the was not found in the collection.
+ /// true if the was successfully removed from the collection;
+ /// false if otherwise or if the was not found in the collection.
public bool Remove(TElement item)
{
bool remove = collection.Remove(item);
Index: Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs
===================================================================
diff -u -rf17fd54ecae5f97f74504318fd89aad3880fede4 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs (.../DataGridViewControl.cs) (revision f17fd54ecae5f97f74504318fd89aad3880fede4)
+++ Core/Common/src/Core.Common.Controls/DataGrid/DataGridViewControl.cs (.../DataGridViewControl.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -112,8 +112,8 @@
}
///
- /// Returns true when the is in edit mode.
- /// False otherwise.
+ /// Returns true when the is in edit mode,
+ /// false otherwise.
///
public bool IsCurrentCellInEditMode
{
Index: Core/Common/src/Core.Common.Gui/Attributes/DynamicReadOnlyAttribute.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Gui/Attributes/DynamicReadOnlyAttribute.cs (.../DynamicReadOnlyAttribute.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Common/src/Core.Common.Gui/Attributes/DynamicReadOnlyAttribute.cs (.../DynamicReadOnlyAttribute.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -44,7 +44,7 @@
///
/// The object.
/// The name of the property of .
- /// True if the property is read-only, false otherwise.
+ /// true if the property is read-only, false otherwise.
/// Thrown when
/// does not correspond to a public property of .
/// Thrown when there isn't a single method
Index: Core/Common/src/Core.Common.Gui/Attributes/DynamicReadOnlyValidationMethodAttribute.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Gui/Attributes/DynamicReadOnlyValidationMethodAttribute.cs (.../DynamicReadOnlyValidationMethodAttribute.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Common/src/Core.Common.Gui/Attributes/DynamicReadOnlyValidationMethodAttribute.cs (.../DynamicReadOnlyValidationMethodAttribute.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -39,7 +39,7 @@
/// Required method signature when marking a method with .
///
/// The name of the property to be checked.
- /// True if the referred property should be read-only, false if it should be editable.
+ /// true if the referred property should be read-only, false if it should be editable.
public delegate bool IsPropertyReadOnly(string propertyName);
///
Index: Core/Common/src/Core.Common.Gui/Attributes/DynamicVisibleAttribute.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Gui/Attributes/DynamicVisibleAttribute.cs (.../DynamicVisibleAttribute.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Common/src/Core.Common.Gui/Attributes/DynamicVisibleAttribute.cs (.../DynamicVisibleAttribute.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -44,7 +44,7 @@
///
/// The object.
/// The name of the property of .
- /// True if the property is visible, false otherwise.
+ /// true if the property is visible, false otherwise.
/// Thrown when
/// does not correspond to a public property of .
/// Thrown when there isn't a single method
Index: Core/Common/src/Core.Common.Gui/Attributes/DynamicVisibleValidationMethodAttribute.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Gui/Attributes/DynamicVisibleValidationMethodAttribute.cs (.../DynamicVisibleValidationMethodAttribute.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Common/src/Core.Common.Gui/Attributes/DynamicVisibleValidationMethodAttribute.cs (.../DynamicVisibleValidationMethodAttribute.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -39,7 +39,7 @@
/// Required method signature when marking a method with .
///
/// The name of the property to be checked.
- /// True if the referred property should be visible, false if it should be hidden.
+ /// true if the referred property should be visible, false if it should be hidden.
public delegate bool IsPropertyVisible(string propertyName);
///
Index: Core/Common/src/Core.Common.Gui/Commands/IStorageCommands.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Gui/Commands/IStorageCommands.cs (.../IStorageCommands.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Common/src/Core.Common.Gui/Commands/IStorageCommands.cs (.../IStorageCommands.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -40,7 +40,7 @@
/// Checks whether the current project has unsaved changes. If so, these unsaved changes
/// will be handled.
///
- /// True if there were no unsaved changes or when the changes were
+ /// true if there were no unsaved changes or when the changes were
/// successfully handled, false if the unsaved changes were not handled.
bool HandleUnsavedChanges();
Index: Core/Common/src/Core.Common.Gui/Commands/IViewCommands.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Gui/Commands/IViewCommands.cs (.../IViewCommands.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Common/src/Core.Common.Gui/Commands/IViewCommands.cs (.../IViewCommands.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -51,7 +51,7 @@
/// Indicates if a there are any views available for the application's selection.
///
/// The data object to open views for.
- /// True if there are any views for , false otherwise.
+ /// true if there are any views for , false otherwise.
bool CanOpenViewFor(object viewData);
}
}
\ No newline at end of file
Index: Core/Common/src/Core.Common.Utils/Extensions/ComparableExtensions.cs
===================================================================
diff -u -r569a286badd9b3494f5465cc2767a8cf6a77f618 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Utils/Extensions/ComparableExtensions.cs (.../ComparableExtensions.cs) (revision 569a286badd9b3494f5465cc2767a8cf6a77f618)
+++ Core/Common/src/Core.Common.Utils/Extensions/ComparableExtensions.cs (.../ComparableExtensions.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -33,7 +33,7 @@
///
/// The first object.
/// The second object.
- /// True if is considered greater than ,
+ /// true if is considered greater than ,
/// false otherwise.
/// null is considered smaller than any other not-null value.
/// Thrown when object type of
@@ -57,7 +57,7 @@
///
/// The first object.
/// The second object.
- /// True if is considered smaller than ,
+ /// true if is considered smaller than ,
/// false otherwise.
/// null is considered smaller than any not-null value.
/// Thrown when object type of
@@ -78,7 +78,7 @@
/// Value to be checked.
/// First range value.
/// Second range value.
- /// True if falls within the inclusive bounds,
+ /// true if falls within the inclusive bounds,
/// false otherwise.
/// Thrown when object type of
/// is not the same as that of or .
Index: Core/Common/src/Core.Common.Utils/Reflection/TypeUtils.cs
===================================================================
diff -u -recb90789988e5dd12d9eeeb7e016b57551121089 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Common/src/Core.Common.Utils/Reflection/TypeUtils.cs (.../TypeUtils.cs) (revision ecb90789988e5dd12d9eeeb7e016b57551121089)
+++ Core/Common/src/Core.Common.Utils/Reflection/TypeUtils.cs (.../TypeUtils.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -60,7 +60,7 @@
///
/// The type to check for.
/// Type to check.
- /// True if is the same type as ,
+ /// true if is the same type as ,
/// or has that as (one of) its supertypes.
///
public static bool Implements(this Type thisType)
@@ -73,7 +73,7 @@
///
/// Type to check.
/// The type to check for.
- /// True if is the same type as ,
+ /// true if is the same type as ,
/// or has that as (one of) its supertypes.
///
/// Thrown when is null.
Index: Core/Components/src/Core.Components.Gis.IO/Readers/ShapeFileReaderBase.cs
===================================================================
diff -u -r67284323e2785c651633d9c52049ba12a9c70e6a -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Core/Components/src/Core.Components.Gis.IO/Readers/ShapeFileReaderBase.cs (.../ShapeFileReaderBase.cs) (revision 67284323e2785c651633d9c52049ba12a9c70e6a)
+++ Core/Components/src/Core.Components.Gis.IO/Readers/ShapeFileReaderBase.cs (.../ShapeFileReaderBase.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -74,7 +74,7 @@
/// Determines whether the specified attribute has been defined in the shapefile attributes.
///
/// Name of the attribute.
- /// True is the attribute is defined, false otherwise.
+ /// true is the attribute is defined, false otherwise.
/// This check is case-sensitive.
public bool HasAttribute(string attributeName)
{
Index: Ringtoets/Common/src/Ringtoets.Common.IO/DikeProfiles/DikeProfileDataReader.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Common/src/Ringtoets.Common.IO/DikeProfiles/DikeProfileDataReader.cs (.../DikeProfileDataReader.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/DikeProfiles/DikeProfileDataReader.cs (.../DikeProfileDataReader.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -189,7 +189,7 @@
///
/// The text.
/// The line number.
- /// True if the text matches a VERSIE key-value pair and has been
+ /// true if the text matches a VERSIE key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the VERSIE key does
/// not represent a valid version code or has already been defined or the version
@@ -266,7 +266,7 @@
/// The text.
/// The data to be updated.
/// The line number.
- /// True if the text matches an ID key-value pair and has been
+ /// true if the text matches an ID key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the ID key does
/// not represent an id or has already been defined.
@@ -326,7 +326,7 @@
/// The text.
/// The data to be updated.
/// The line number.
- /// True if the text matches a RICHTING key-value pair and has been
+ /// true if the text matches a RICHTING key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the RICHTING key does
/// not represent a valid number or has already been defined or the orientation value
@@ -403,7 +403,7 @@
/// The text.
/// The data to be updated.
/// The line number.
- /// True if the text matches a DAM key-value pair and has been
+ /// true if the text matches a DAM key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the DAM key does
/// not represent a valid value or has already been defined.
@@ -468,7 +468,7 @@
/// The text.
/// The data to be updated.
/// The line number.
- /// True if the text matches a DAMWAND key-value pair and has been
+ /// true if the text matches a DAMWAND key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the DAMWAND key
/// does not represent a valid value or has already been defined.
@@ -533,7 +533,7 @@
/// The text.
/// The data to be updated.
/// The line number.
- /// True if the text matches a DAMHOOGTE key-value pair and has been
+ /// true if the text matches a DAMHOOGTE key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the DAMHOOGTE key
/// does not represent a valid number or has already been defined.
@@ -589,7 +589,7 @@
/// The text.
/// The data to be updated.
/// The line number.
- /// True if the text matches a KRUINHOOGTE key-value pair and has been
+ /// true if the text matches a KRUINHOOGTE key-value pair and has been
/// validated successfully; false otherwise.
/// The value after the KRUINHOOGTE key
/// does not represent a valid number or has already been defined.
@@ -646,7 +646,7 @@
/// The data to be updated.
/// The reader of the file.
/// The line number.
- /// True if the text matches a DIJK key-value pair and has been
+ /// true if the text matches a DIJK key-value pair and has been
/// validated successfully; false otherwise.
/// Thrown when
///
Index: Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/HydraulicBoundaryDatabaseImporter.cs
===================================================================
diff -u -rcc0d30419fa22495223f4c7da667e50d4aa189e2 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/HydraulicBoundaryDatabaseImporter.cs (.../HydraulicBoundaryDatabaseImporter.cs) (revision cc0d30419fa22495223f4c7da667e50d4aa189e2)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/FileImporters/HydraulicBoundaryDatabaseImporter.cs (.../HydraulicBoundaryDatabaseImporter.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -52,7 +52,7 @@
/// to set the newly
/// created .
/// The path of the hydraulic boundary database file to import from.
- /// True if the import was successful, false otherwise.
+ /// true if the import was successful, false otherwise.
/// Thrown when is null.
/// Thrown when:
///
Index: Ringtoets/Common/src/Ringtoets.Common.IO/HydraRing/HydraulicBoundaryLocationFilter.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Common/src/Ringtoets.Common.IO/HydraRing/HydraulicBoundaryLocationFilter.cs (.../HydraulicBoundaryLocationFilter.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/HydraRing/HydraulicBoundaryLocationFilter.cs (.../HydraulicBoundaryLocationFilter.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -63,7 +63,7 @@
/// should be imported.
///
/// The name of the location.
- /// True if the location should be imported, false otherwise.
+ /// true if the location should be imported, false otherwise.
public bool ShouldInclude(long locationId)
{
int matchingIndex = locationsToFilterOut.BinarySearch(locationId);
Index: Ringtoets/Common/src/Ringtoets.Common.Service/DesignWaterLevelCalculationService.cs
===================================================================
diff -u -r9a6b8bd8e680c7b847ad548bad1c5a8c2d33b143 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Common/src/Ringtoets.Common.Service/DesignWaterLevelCalculationService.cs (.../DesignWaterLevelCalculationService.cs) (revision 9a6b8bd8e680c7b847ad548bad1c5a8c2d33b143)
+++ Ringtoets/Common/src/Ringtoets.Common.Service/DesignWaterLevelCalculationService.cs (.../DesignWaterLevelCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -55,7 +55,7 @@
/// Error and status information is logged during the execution of the operation.
///
/// The file path of the hydraulic boundary database file which to validate.
- /// True if there were no validation errors; False otherwise.
+ /// true if there were no validation errors; false otherwise.
public static bool Validate(string hydraulicBoundaryDatabaseFilePath)
{
CalculationServiceHelper.LogValidationBegin();
Index: Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs (.../ValidationRule.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.Service/ValidationRules/ValidationRule.cs (.../ValidationRule.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -39,7 +39,7 @@
/// Checks if a value is NaN or Infinity.
///
/// The value which needs to be checked.
- /// Trueif is not a concrete number, false if otherwise.
+ /// trueif is not a concrete number, false if otherwise.
protected static bool IsNotConcreteNumber(double value)
{
return double.IsNaN(value) || double.IsInfinity(value);
Index: Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs
===================================================================
diff -u -r9a6b8bd8e680c7b847ad548bad1c5a8c2d33b143 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs (.../WaveHeightCalculationService.cs) (revision 9a6b8bd8e680c7b847ad548bad1c5a8c2d33b143)
+++ Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs (.../WaveHeightCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -56,7 +56,7 @@
/// Error and status information is logged during the execution of the operation.
///
/// The file path of the hydraulic boundary database file which to validate.
- /// True if there were no validation errors; False otherwise.
+ /// true if there were no validation errors; false otherwise.
public static bool Validate(string hydraulicBoundaryDatabaseFilePath)
{
CalculationServiceHelper.LogValidationBegin();
Index: Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Service/DuneErosionBoundaryCalculationService.cs
===================================================================
diff -u -r92210258706d0f57e05552037b676bd941a6fe19 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Service/DuneErosionBoundaryCalculationService.cs (.../DuneErosionBoundaryCalculationService.cs) (revision 92210258706d0f57e05552037b676bd941a6fe19)
+++ Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Service/DuneErosionBoundaryCalculationService.cs (.../DuneErosionBoundaryCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -55,7 +55,7 @@
///
/// The file path of the hydraulic boundary
/// database file which to validate.
- /// True if there were no validation errors; False otherwise.
+ /// true if there were no validation errors; false otherwise.
public static bool Validate(string hydraulicBoundaryDatabaseFilePath)
{
CalculationServiceHelper.LogValidationBegin();
Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs
===================================================================
diff -u -r7371a70ed0751d341d41a7b951b780d286f83791 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs (.../GrassCoverErosionInwardsCalculationService.cs) (revision 7371a70ed0751d341d41a7b951b780d286f83791)
+++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Service/GrassCoverErosionInwardsCalculationService.cs (.../GrassCoverErosionInwardsCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -70,7 +70,7 @@
///
/// The for which to validate the values.
/// The for which to validate the values.
- /// True if has no validation errors; False otherwise.
+ /// true if has no validation errors; false otherwise.
public static bool Validate(GrassCoverErosionInwardsCalculation calculation, IAssessmentSection assessmentSection)
{
CalculationServiceHelper.LogValidationBegin();
Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs
===================================================================
diff -u -r92210258706d0f57e05552037b676bd941a6fe19 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationService.cs) (revision 92210258706d0f57e05552037b676bd941a6fe19)
+++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Service/GrassCoverErosionOutwardsWaveConditionsCalculationService.cs (.../GrassCoverErosionOutwardsWaveConditionsCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -45,7 +45,7 @@
///
/// The for which to validate the values.
/// The file path of the hydraulic boundary database file which to validate.
- /// True if there were no validation errors; False otherwise.
+ /// true if there were no validation errors; false otherwise.
/// Thrown when is null.
public static bool Validate(GrassCoverErosionOutwardsWaveConditionsCalculation calculation, string hydraulicBoundaryDatabaseFilePath)
{
Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Service/MacroStabilityInwardsCalculationService.cs
===================================================================
diff -u -ra06f1ed48db991a6604ac72d06107a0f47bf5963 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Service/MacroStabilityInwardsCalculationService.cs (.../MacroStabilityInwardsCalculationService.cs) (revision a06f1ed48db991a6604ac72d06107a0f47bf5963)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Service/MacroStabilityInwardsCalculationService.cs (.../MacroStabilityInwardsCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -46,7 +46,7 @@
/// the execution of the operation.
///
/// The for which to validate the values.
- /// False if contains validation errors; True otherwise.
+ /// false if contains validation errors; true otherwise.
/// Thrown when is null.
public static bool Validate(MacroStabilityInwardsCalculation calculation)
{
Index: Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs
===================================================================
diff -u -r3f515e610bde480dd6cdf54dc0887f072d0fb6d2 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs (.../PipingCalculationService.cs) (revision 3f515e610bde480dd6cdf54dc0887f072d0fb6d2)
+++ Ringtoets/Piping/src/Ringtoets.Piping.Service/PipingCalculationService.cs (.../PipingCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -45,7 +45,7 @@
/// the execution of the operation.
///
/// The for which to validate the values.
- /// False if contains validation errors; True otherwise.
+ /// false if contains validation errors; true otherwise.
/// Thrown when is null.
public static bool Validate(PipingCalculation calculation)
{
Index: Ringtoets/Revetment/src/Ringtoets.Revetment.Service/WaveConditionsCalculationServiceBase.cs
===================================================================
diff -u -r7371a70ed0751d341d41a7b951b780d286f83791 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/Revetment/src/Ringtoets.Revetment.Service/WaveConditionsCalculationServiceBase.cs (.../WaveConditionsCalculationServiceBase.cs) (revision 7371a70ed0751d341d41a7b951b780d286f83791)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.Service/WaveConditionsCalculationServiceBase.cs (.../WaveConditionsCalculationServiceBase.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -73,7 +73,7 @@
/// The input of the calculation.
/// The hydraulic boundary database file that should be used for performing the calculation.
/// The name of the design water level property.
- /// True if has no validation errors; False otherwise.
+ /// true if has no validation errors; false otherwise.
/// Thrown when
/// or is null.
protected static bool ValidateWaveConditionsInput(WaveConditionsInput waveConditionsInput,
Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs
===================================================================
diff -u -r92210258706d0f57e05552037b676bd941a6fe19 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs (.../StabilityStoneCoverWaveConditionsCalculationService.cs) (revision 92210258706d0f57e05552037b676bd941a6fe19)
+++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Service/StabilityStoneCoverWaveConditionsCalculationService.cs (.../StabilityStoneCoverWaveConditionsCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -49,7 +49,7 @@
///
/// The for which to validate the values.
/// The file path of the hydraulic boundary database file which to validate.
- /// True if there were no validation errors; False otherwise.
+ /// true if there were no validation errors; false otherwise.
/// Thrown when is null.
public static bool Validate(StabilityStoneCoverWaveConditionsCalculation calculation, string hydraulicBoundaryDatabaseFilePath)
{
Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs
===================================================================
diff -u -r92210258706d0f57e05552037b676bd941a6fe19 -r8f58a2b3db380aee7d286ca834219133a43aef82
--- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 92210258706d0f57e05552037b676bd941a6fe19)
+++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 8f58a2b3db380aee7d286ca834219133a43aef82)
@@ -45,7 +45,7 @@
///
/// The for which to validate the values.
/// The file path of the hydraulic boundary database file which to validate.
- /// True if there were no validation errors; False otherwise.
+ /// true if there were no validation errors; false otherwise.
/// Thrown when is null.
public static bool Validate(WaveImpactAsphaltCoverWaveConditionsCalculation calculation, string hydraulicBoundaryDatabaseFilePath)
{