Skip to content

Commit 7aa5359

Browse files
committed
Renormalize all files
1 parent 9a7dffb commit 7aa5359

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/coverlet.core/Symbols/CecilSymbolHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ 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);
23+
public static bool IsMoveNext(string fullName)
24+
{
25+
return IsMovenext.IsMatch(fullName);
2626
}
2727

2828
public static List<BranchPoint> GetBranchPoints(MethodDefinition methodDefinition)

0 commit comments

Comments
 (0)