Skip to content

Commit e63b3f4

Browse files
remove IsMoveNext()
1 parent 909249c commit e63b3f4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/coverlet.core/Symbols/CecilSymbolHelper.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ public static class CecilSymbolHelper
2020
private const int StepOverLineCode = 0xFEEFEE;
2121
private static readonly Regex IsMovenext = new Regex(@"\<[^\s>]+\>\w__\w(\w)?::MoveNext\(\)$", RegexOptions.Compiled | RegexOptions.ExplicitCapture);
2222

23-
public static bool IsMoveNext(string fullName)
24-
{
25-
return IsMovenext.IsMatch(fullName);
26-
}
27-
2823
public static List<BranchPoint> GetBranchPoints(MethodDefinition methodDefinition)
2924
{
3025
var list = new List<BranchPoint>();

0 commit comments

Comments
 (0)