From: Tarek Mahmoud Sayed Date: Fri, 7 Jul 2017 18:06:58 +0000 (-0700) Subject: Minor fix added to mirrored changes X-Git-Tag: accepted/tizen/base/20180629.140029~1083^2~242 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cdcaa8708fe6d59a3f5a0be69b245eb47d735a8;p=platform%2Fupstream%2Fcoreclr.git Minor fix added to mirrored changes --- 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.