From b998ca13105938a6407bcaa97801759aa14f65b2 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 26 Jul 2022 14:59:33 +0200 Subject: [PATCH] Update CoberturaReporter.cs removed obsolete Debug.Assert --- src/coverlet.core/Reporters/CoberturaReporter.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/coverlet.core/Reporters/CoberturaReporter.cs b/src/coverlet.core/Reporters/CoberturaReporter.cs index 57571df9a..e3d299fda 100644 --- a/src/coverlet.core/Reporters/CoberturaReporter.cs +++ b/src/coverlet.core/Reporters/CoberturaReporter.cs @@ -227,9 +227,6 @@ private static string GetRelativePathFromBase(IEnumerable basePaths, str return path.Substring(basePath.Length); } } - - Debug.Assert(false, "Unexpected, we should find at least one path starts with one pre-build roots list"); - return path; } }