Skip to content

Commit 6bbeda1

Browse files
committed
chore: final set of stylecop issues
Signed-off-by: jbrinkman <[email protected]>
1 parent 0d93c92 commit 6bbeda1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/DotNetApiDiff/ApiExtraction/ApiComparer.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,10 @@ public IEnumerable<ApiDifference> CompareTypes(IEnumerable<Type> oldTypes, IEnum
206206
}
207207
}
208208

209-
if (foundMatch) { break; }
209+
if (foundMatch)
210+
{
211+
break;
212+
}
210213
}
211214

212215
// Check for auto-mapping if enabled
@@ -437,7 +440,8 @@ public IEnumerable<ApiDifference> CompareMembers(Type oldType, Type newType)
437440
// Members are equivalent via type mappings - no difference to report
438441
_logger.LogDebug(
439442
"Members are equivalent via type mappings: {OldSignature} <-> {NewSignature}",
440-
oldMember.Signature, equivalentNewMember.Signature);
443+
oldMember.Signature,
444+
equivalentNewMember.Signature);
441445
continue;
442446
}
443447

0 commit comments

Comments
 (0)