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.
GetAssemblyLocation()
1 parent 76507e8 commit 542cf52Copy full SHA for 542cf52
src/Microsoft.Android.Runtime.NativeAOT/Java.Interop/JreRuntime.cs
@@ -70,15 +70,6 @@ static NativeAotRuntimeOptions CreateJreVM (NativeAotRuntimeOptions builder)
70
throw new NotImplementedException ();
71
}
72
73
- [UnconditionalSuppressMessage ("Trimming", "IL3000", Justification = "We check for a null Assembly.Location value!")]
74
- internal static string? GetAssemblyLocation (Assembly assembly)
75
- {
76
- var location = assembly.Location;
77
- if (!string.IsNullOrEmpty (location))
78
- return location;
79
- return null;
80
- }
81
-
82
internal protected JreRuntime (NativeAotRuntimeOptions builder)
83
: base (CreateJreVM (builder))
84
{
0 commit comments