We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 738a67e commit 3d72c5bCopy full SHA for 3d72c5b
src/Readme.txt
@@ -67,6 +67,10 @@ For further details take a look at LICENSE.txt.
67
68
CHANGELOG
69
70
+5.3.6.0
71
+
72
+ * Fix: #676: Fixed issue with Cobertura files with empty class names
73
74
5.3.5.0
75
76
* New: #663: Improved support for Cobertura files generated by "Microsoft CodeCoverage"
src/ReportGenerator.Core/Parser/ClassNameParser.cs
@@ -26,7 +26,7 @@ internal static class ClassNameParser
26
/// <returns>The parser result.</returns>
27
public static ClassNameParserResult ParseClassName(string rawName, bool rawMode)
28
{
29
- if (string.IsNullOrEmpty(rawName))
+ if (rawName == null)
30
31
throw new ArgumentNullException(nameof(rawName));
32
}
0 commit comments