Index: Core/Common/src/Core.Common.Utils/Reflection/TypeUtils.cs =================================================================== diff -u -r24813ad65687801c7e34ce33dd7a82b95b108c65 -r7b50ce0ee44b9412f05dbdb1da89d0ee25d4e7ac --- Core/Common/src/Core.Common.Utils/Reflection/TypeUtils.cs (.../TypeUtils.cs) (revision 24813ad65687801c7e34ce33dd7a82b95b108c65) +++ Core/Common/src/Core.Common.Utils/Reflection/TypeUtils.cs (.../TypeUtils.cs) (revision 7b50ce0ee44b9412f05dbdb1da89d0ee25d4e7ac) @@ -37,24 +37,6 @@ } /// - /// Determines whether the given type can be considered a number or not. - /// - /// The type. - /// True if the type represents a numerical value; False when this is not the case. - public static bool IsNumericalType(this Type type) - { - return (type == typeof(Single) || - type == typeof(UInt32) || - type == typeof(UInt16) || - type == typeof(Int64) || - type == typeof(Int32) || - type == typeof(Int16) || - type == typeof(byte) || - type == typeof(Double) || - type == typeof(Decimal)); - } - - /// /// Gets the name of the member. /// /// The type of the class on which the expression takes place. Index: Core/Common/test/Core.Common.Utils.Test/Reflection/TypeUtilsTest.cs =================================================================== diff -u -rb81978adc73edcf368115b58fd37f34dc7fb6ab5 -r7b50ce0ee44b9412f05dbdb1da89d0ee25d4e7ac --- Core/Common/test/Core.Common.Utils.Test/Reflection/TypeUtilsTest.cs (.../TypeUtilsTest.cs) (revision b81978adc73edcf368115b58fd37f34dc7fb6ab5) +++ Core/Common/test/Core.Common.Utils.Test/Reflection/TypeUtilsTest.cs (.../TypeUtilsTest.cs) (revision 7b50ce0ee44b9412f05dbdb1da89d0ee25d4e7ac) @@ -73,44 +73,6 @@ } [Test] - public void IsNumericalType_ForNumericalTypes_ReturnTrue() - { - // Setup - var numbericalObjects = new object[] - { - default(float), - default(int), - default(long), - default(double), - default(byte), - default(short), - default(uint), - default(ushort), - default(decimal) - }; - - // Call - foreach (var numbericalObject in numbericalObjects) - { - var isNumerical = numbericalObject.GetType().IsNumericalType(); - - // Assert - Assert.True(isNumerical, - string.Format("'{0}' should be considered a numerical value.", numbericalObject.GetType())); - } - } - - [Test] - public void IsNumericalType_ThisTestClass_ReturnFalse() - { - // Call - var isNumbercal = GetType().IsNumericalType(); - - // Assert - Assert.IsFalse(isNumbercal); - } - - [Test] public void GetMemberName_PropertyExpression_ReturnPropertyName() { // Call Index: build/Technical_documentation/Ringtoets.doxygen.svn =================================================================== diff -u -r4be37f4068cccf4a14d093bb0e43777ceb59098e -r7b50ce0ee44b9412f05dbdb1da89d0ee25d4e7ac --- build/Technical_documentation/Ringtoets.doxygen.svn (.../Ringtoets.doxygen.svn) (revision 4be37f4068cccf4a14d093bb0e43777ceb59098e) +++ build/Technical_documentation/Ringtoets.doxygen.svn (.../Ringtoets.doxygen.svn) (revision 7b50ce0ee44b9412f05dbdb1da89d0ee25d4e7ac) @@ -828,7 +828,7 @@ # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = ../Core/GIS +EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded