summaryrefslogtreecommitdiff
path: root/src/vm/appdomain.inl
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/appdomain.inl')
-rw-r--r--src/vm/appdomain.inl15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/vm/appdomain.inl b/src/vm/appdomain.inl
index d2a87ed08c..9b3c563f07 100644
--- a/src/vm/appdomain.inl
+++ b/src/vm/appdomain.inl
@@ -19,21 +19,6 @@
#include "appdomain.hpp"
-inline void AppDomain::EnterContext(Thread* pThread, Context* pCtx,ContextTransitionFrame *pFrame)
-{
- CONTRACTL
- {
- GC_NOTRIGGER;
- MODE_COOPERATIVE;
- PRECONDITION(CheckPointer(pThread));
- PRECONDITION(CheckPointer(pCtx));
- PRECONDITION(CheckPointer(pFrame));
- PRECONDITION(pCtx->GetDomain()==this);
- }
- CONTRACTL_END;
- pThread->EnterContextRestricted(pCtx,pFrame);
-};
-
inline DomainAssembly* AppDomain::FindDomainAssembly(Assembly* assembly)
{
CONTRACTL