From 61f1e4d2e41c982b938b2596a2a4bee4f7a206be Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Thu, 28 Dec 2017 16:26:46 -0800 Subject: [PATCH] Make HandleRef fields private --- .../shared/System/Runtime/InteropServices/HandleRef.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mscorlib/shared/System/Runtime/InteropServices/HandleRef.cs b/src/mscorlib/shared/System/Runtime/InteropServices/HandleRef.cs index b8dc0c0db1..64d0553130 100644 --- a/src/mscorlib/shared/System/Runtime/InteropServices/HandleRef.cs +++ b/src/mscorlib/shared/System/Runtime/InteropServices/HandleRef.cs @@ -8,8 +8,8 @@ namespace System.Runtime.InteropServices { // ! Do not add or rearrange fields as the EE depends on this layout. //------------------------------------------------------------------ - internal object _wrapper; - internal IntPtr _handle; + private object _wrapper; + private IntPtr _handle; //------------------------------------------------------------------ public HandleRef(object wrapper, IntPtr handle) -- 2.34.1