summaryrefslogtreecommitdiff
path: root/src/vm/appdomainnative.cpp
diff options
context:
space:
mode:
authordanmosemsft <danmose@microsoft.com>2017-02-10 16:07:45 -0800
committerdanmosemsft <danmose@microsoft.com>2017-02-10 21:36:03 -0800
commit6302d7a50884c6cf239e74bad85988be7403fe72 (patch)
treecad87e67d0555107867ffd98030f66b5ef53ad70 /src/vm/appdomainnative.cpp
parent751771a8976f909af772e35c167bd7e3ffbe44c8 (diff)
downloadcoreclr-6302d7a50884c6cf239e74bad85988be7403fe72.tar.gz
coreclr-6302d7a50884c6cf239e74bad85988be7403fe72.tar.bz2
coreclr-6302d7a50884c6cf239e74bad85988be7403fe72.zip
Remove always undefined FEATURE_APTCA
Diffstat (limited to 'src/vm/appdomainnative.cpp')
-rw-r--r--src/vm/appdomainnative.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/vm/appdomainnative.cpp b/src/vm/appdomainnative.cpp
index 3935cb5b54..9266849be4 100644
--- a/src/vm/appdomainnative.cpp
+++ b/src/vm/appdomainnative.cpp
@@ -902,25 +902,6 @@ BOOL QCALLTYPE AppDomainNative::IsLegacyCasPolicyEnabled(QCall::AppDomainHandle
#endif // FEATURE_CAS_POLICY
-#ifdef FEATURE_APTCA
-
-// static
-void QCALLTYPE AppDomainNative::SetCanonicalConditionalAptcaList(QCall::AppDomainHandle adhTarget,
- LPCWSTR wszCanonicalConditionalAptcaList)
-{
- QCALL_CONTRACT;
-
- BEGIN_QCALL;
-
- IApplicationSecurityDescriptor *pAppSecDesc = adhTarget->GetSecurityDescriptor();
-
- GCX_COOP();
- pAppSecDesc->SetCanonicalConditionalAptcaList(wszCanonicalConditionalAptcaList);
-
- END_QCALL;
-}
-
-#endif // FEATURE_APTCA
FCIMPL1(Object*, AppDomainNative::GetFriendlyName, AppDomainBaseObject* refThisUNSAFE)
{