We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba8c3a4 commit 9240f20Copy full SHA for 9240f20
src/DotNetApiDiff/ApiExtraction/ApiComparer.cs
@@ -206,7 +206,10 @@ public IEnumerable<ApiDifference> CompareTypes(IEnumerable<Type> oldTypes, IEnum
206
}
207
208
209
- if (foundMatch) { break; }
+ if (foundMatch)
210
+ {
211
+ break;
212
+ }
213
214
215
// Check for auto-mapping if enabled
@@ -437,7 +440,8 @@ public IEnumerable<ApiDifference> CompareMembers(Type oldType, Type newType)
437
440
// Members are equivalent via type mappings - no difference to report
438
441
_logger.LogDebug(
439
442
"Members are equivalent via type mappings: {OldSignature} <-> {NewSignature}",
- oldMember.Signature, equivalentNewMember.Signature);
443
+ oldMember.Signature,
444
+ equivalentNewMember.Signature);
445
continue;
446
447
0 commit comments