Skip to content

Commit

Permalink
[netcore] Remove MonoDomain.DoAssemblyResolve (mono/mono#18139)
Browse files Browse the repository at this point in the history
This is no longer called in netcore builds as of a while ago, so get rid of it and the corresponding linker exclusion.

Commit migrated from mono/mono@acc8c0c
  • Loading branch information
CoffeeFlux authored and akoeplinger committed Dec 11, 2019
1 parent 184a351 commit f93df27
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
<method name="DoTypeResolve" />
<!-- appdomain.c: mono_domain_try_type_builder_resolve -->
<method name="DoTypeBuilderResolve" />
<!-- appdomain.c: mono_try_assembly_resolve -->
<method name="DoAssemblyResolve" />
<!-- appdomain.c: mono_domain_fire_assembly_load -->
<method name="DoAssemblyLoad" />
</type>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@ private void DoAssemblyLoad (Assembly assembly)
{
return; /* FIXME */
}

private Assembly? DoAssemblyResolve (string name, Assembly requestingAssembly, bool refonly)
{
return null;
}

internal Assembly? DoTypeResolve (string name)
{
Expand Down

0 comments on commit f93df27

Please sign in to comment.