Skip to content

Commit 1d7eb26

Browse files
committed
fix: SA1518
Signed-off-by: jbrinkman <[email protected]>
1 parent a455f42 commit 1d7eb26

23 files changed

+0
-69
lines changed

src/DotNetApiDiff/ApiExtraction/ApiExtractor.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,3 @@ public static bool IsCompilerGenerated(this Type type)
205205
return type.IsDefined(typeof(System.Runtime.CompilerServices.CompilerGeneratedAttribute), true);
206206
}
207207
}
208-
209-
210-

src/DotNetApiDiff/ApiExtraction/MemberSignatureBuilder.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -928,6 +928,3 @@ private string GetMostAccessible(string access1, string access2)
928928
return access1; // Default to first if not found
929929
}
930930
}
931-
932-
933-

src/DotNetApiDiff/ApiExtraction/TypeAnalyzer.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,3 @@ private bool IsPublicOrOverrideEvent(EventInfo eventInfo)
694694
return false;
695695
}
696696
}
697-
698-
699-

src/DotNetApiDiff/AssemblyLoading/AssemblyLoader.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,3 @@ public void Dispose()
221221
GC.SuppressFinalize(this);
222222
}
223223
}
224-
225-
226-

src/DotNetApiDiff/AssemblyLoading/IsolatedAssemblyLoadContext.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,3 @@ public void AddSearchPath(string path)
136136
}
137137
}
138138
}
139-
140-
141-

src/DotNetApiDiff/Interfaces/IApiComparer.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,3 @@ public interface IApiComparer
3333
/// <returns>List of member-level differences</returns>
3434
IEnumerable<ApiDifference> CompareMembers(Type oldType, Type newType);
3535
}
36-
37-
38-

src/DotNetApiDiff/Interfaces/IApiExtractor.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,3 @@ public interface IApiExtractor
3030
/// <returns>Collection of public types</returns>
3131
IEnumerable<Type> GetPublicTypes(Assembly assembly);
3232
}
33-
34-
35-

src/DotNetApiDiff/Interfaces/IAssemblyLoader.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,3 @@ public interface IAssemblyLoader
2424
/// <returns>True if path contains a valid assembly, false otherwise</returns>
2525
bool IsValidAssembly(string assemblyPath);
2626
}
27-
28-
29-

src/DotNetApiDiff/Interfaces/IMemberSignatureBuilder.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,3 @@ public interface IMemberSignatureBuilder
5050
/// <returns>Normalized type signature</returns>
5151
string BuildTypeSignature(Type type);
5252
}
53-
54-
55-

src/DotNetApiDiff/Interfaces/IReportGenerator.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,3 @@ public interface IReportGenerator
3030
/// <returns>Collection of supported report formats</returns>
3131
IEnumerable<ReportFormat> GetSupportedFormats();
3232
}
33-
34-
35-

0 commit comments

Comments
 (0)