We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d93c92 commit 6bbeda1Copy full SHA for 6bbeda1
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