From: Felipe Fujiy Pessoto Date: Thu, 16 Feb 2017 02:08:58 +0000 (-0200) Subject: Remove unnecessary "this" X-Git-Tag: accepted/tizen/base/20180629.140029~2197^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f20e0d248cd425b608c43a957b4c65c1d8578f20;p=platform%2Fupstream%2Fcoreclr.git Remove unnecessary "this" --- diff --git a/src/mscorlib/src/System/String.Comparison.cs b/src/mscorlib/src/System/String.Comparison.cs index eb451fc..dda0bd6 100644 --- a/src/mscorlib/src/System/String.Comparison.cs +++ b/src/mscorlib/src/System/String.Comparison.cs @@ -781,7 +781,7 @@ namespace System [Pure] public bool EndsWith(char value) { - int thisLen = this.Length; + int thisLen = Length; return thisLen != 0 && this[thisLen - 1] == value; }