From: alexk000 Date: Wed, 23 Jan 2019 17:36:20 +0000 (-0500) Subject: Remove variable name duplication (dotnet/coreclr#22155) X-Git-Tag: submit/tizen/20210909.063632~11030^2~2736 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5daa7b149d59e42e97638c4ab31d851149398478;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Remove variable name duplication (dotnet/coreclr#22155) Commit migrated from https://github.com/dotnet/coreclr/commit/0382455522962275c0f9b0bbe9629b789e9d103e --- diff --git a/src/libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs b/src/libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs index 1f1b921..bc0300a 100644 --- a/src/libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs +++ b/src/libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs @@ -150,7 +150,7 @@ namespace System.IO int charsRead = 0; int numBytes = 0; - long posSav = posSav = 0; + long posSav = 0; if (_stream.CanSeek) {