summaryrefslogtreecommitdiff
path: root/src/classlibnative
diff options
context:
space:
mode:
authorDan Moseley <danmose@microsoft.com>2017-02-15 21:50:01 -0800
committerGitHub <noreply@github.com>2017-02-15 21:50:01 -0800
commita9b25d4aa22a1f4ad5f323f6c826e318f5a720fe (patch)
tree600b6247757dd489f397fbf25140c36c5abc5e86 /src/classlibnative
parente50207b834d9946027828f8c3b3467e29ac2efb1 (diff)
parent7354ac5aded67f20b9d2edd5b49ff7f4992ae15d (diff)
downloadcoreclr-a9b25d4aa22a1f4ad5f323f6c826e318f5a720fe.tar.gz
coreclr-a9b25d4aa22a1f4ad5f323f6c826e318f5a720fe.tar.bz2
coreclr-a9b25d4aa22a1f4ad5f323f6c826e318f5a720fe.zip
Merge pull request #9603 from danmosemsft/defines4
Remove more dead native defines
Diffstat (limited to 'src/classlibnative')
-rw-r--r--src/classlibnative/bcltype/objectnative.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/classlibnative/bcltype/objectnative.cpp b/src/classlibnative/bcltype/objectnative.cpp
index bf65ad1ff5..82b189d5c8 100644
--- a/src/classlibnative/bcltype/objectnative.cpp
+++ b/src/classlibnative/bcltype/objectnative.cpp
@@ -18,13 +18,7 @@
#include "field.h"
#include "object.h"
#include "comsynchronizable.h"
-#ifdef FEATURE_REMOTING
-#include "remoting.h"
-#endif
#include "eeconfig.h"
-#ifdef FEATURE_REMOTING
-#include "objectclone.h"
-#endif
#include "mdaassistants.h"
@@ -212,11 +206,6 @@ NOINLINE static Object* GetClassHelper(OBJECTREF objRef)
HELPER_METHOD_FRAME_BEGIN_RET_ATTRIB_1(Frame::FRAME_ATTR_EXACT_DEPTH|Frame::FRAME_ATTR_CAPTURE_DEPTH_2, refType);
-#ifdef FEATURE_REMOTING
- if (objRef->IsTransparentProxy())
- refType = CRemotingServices::GetClass(objRef);
- else
-#endif
refType = typeHandle.GetManagedClassObject();
HELPER_METHOD_FRAME_END();