summaryrefslogtreecommitdiff
path: root/src/vm/multicorejit.cpp
diff options
context:
space:
mode:
authorDavid Wrighton <davidwr@microsoft.com>2019-04-24 17:01:31 -0700
committerGitHub <noreply@github.com>2019-04-24 17:01:31 -0700
commit4a2654124ecf38300a717db79926334703abeb70 (patch)
tree3a1ef48777671541574388420eb3411c38795205 /src/vm/multicorejit.cpp
parente9691546d308fde4e56cc821f8c9bfda7e9a8b91 (diff)
downloadcoreclr-4a2654124ecf38300a717db79926334703abeb70.tar.gz
coreclr-4a2654124ecf38300a717db79926334703abeb70.tar.bz2
coreclr-4a2654124ecf38300a717db79926334703abeb70.zip
More multi-appdomain support removal (#23921)
More multi-appdomain support removal - Remove DomainLocalBlock - Remove DomainModule - Remove FindDomain(File/Module/Assembly) - Remove GetDomainModule - Remove variants of GetDomain(File/Assembly) that take AppDomain parameter - Adjust contracts to be less strict - GetDomainFile/Assembly no longer need a complex contract as multi-domain support does not exist - Eliminiate uses of encoded ModuleID
Diffstat (limited to 'src/vm/multicorejit.cpp')
-rw-r--r--src/vm/multicorejit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/multicorejit.cpp b/src/vm/multicorejit.cpp
index 20e8f4b984..5ff9bb1d55 100644
--- a/src/vm/multicorejit.cpp
+++ b/src/vm/multicorejit.cpp
@@ -234,7 +234,7 @@ FileLoadLevel MulticoreJitManager::GetModuleFileLoadLevel(Module * pModule)
if (pModule != NULL)
{
- DomainFile * pDomainFile = pModule->FindDomainFile(GetAppDomain());
+ DomainFile * pDomainFile = pModule->GetDomainFile();
if (pDomainFile != NULL)
{