Skip to content

Commit af24f7a

Browse files
authored
Merge pull request #294 from sharwell/normalize
Add .gitattributes
2 parents e1b63ee + 7aa5359 commit af24f7a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

src/coverlet.core/Symbols/CecilSymbolHelper.cs

+3-3
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)