From 4cdcaa8708fe6d59a3f5a0be69b245eb47d735a8 Mon Sep 17 00:00:00 2001 From: Tarek Mahmoud Sayed Date: Fri, 7 Jul 2017 11:06:58 -0700 Subject: [PATCH] Minor fix added to mirrored changes --- src/mscorlib/shared/System/Text/Encoding.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mscorlib/shared/System/Text/Encoding.cs b/src/mscorlib/shared/System/Text/Encoding.cs index 2812240..d292b70 100644 --- a/src/mscorlib/shared/System/Text/Encoding.cs +++ b/src/mscorlib/shared/System/Text/Encoding.cs @@ -202,8 +202,8 @@ namespace System.Text // Remember code page _codePage = codePage; - encoderFallback = encoderFallback ?? new InternalEncoderBestFitFallback(this); - decoderFallback = decoderFallback ?? new InternalDecoderBestFitFallback(this); + this.encoderFallback = encoderFallback ?? new InternalEncoderBestFitFallback(this); + this.decoderFallback = decoderFallback ?? new InternalDecoderBestFitFallback(this); } // Default fallback that we'll use. -- 2.7.4