summaryrefslogtreecommitdiff
path: root/src/mscorlib
diff options
context:
space:
mode:
authorTarek Mahmoud Sayed <tarekms@microsoft.com>2017-07-07 11:06:58 -0700
committerTarek Mahmoud Sayed <tarekms@microsoft.com>2017-07-07 16:57:04 -0700
commit4cdcaa8708fe6d59a3f5a0be69b245eb47d735a8 (patch)
tree157fe5b8f2a9edf57747cebe76dfb8032d323277 /src/mscorlib
parent78c661d7e6c79d6647c6c18bf5cab17aa11b4a3b (diff)
downloadcoreclr-4cdcaa8708fe6d59a3f5a0be69b245eb47d735a8.tar.gz
coreclr-4cdcaa8708fe6d59a3f5a0be69b245eb47d735a8.tar.bz2
coreclr-4cdcaa8708fe6d59a3f5a0be69b245eb47d735a8.zip
Minor fix added to mirrored changes
Diffstat (limited to 'src/mscorlib')
-rw-r--r--src/mscorlib/shared/System/Text/Encoding.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mscorlib/shared/System/Text/Encoding.cs b/src/mscorlib/shared/System/Text/Encoding.cs
index 2812240dc2..d292b7012b 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.