From ec6a6ddcbcac9feaa88aee86036c3e259798d009 Mon Sep 17 00:00:00 2001 From: I_SER_I Date: Wed, 23 Feb 2022 12:11:40 +0300 Subject: [PATCH] refactor: remove 'this' --- .../System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs b/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs index ffaaefad1ffcea..d6212cd0bcf78b 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs @@ -152,6 +152,6 @@ private long GetElapsedDateTimeTicks() return unchecked((long)(GetRawElapsedTicks() * s_tickFrequency)); } - private string DebuggerDisplay => $"{this.Elapsed} (IsRunning = {_isRunning})"; + private string DebuggerDisplay => $"{Elapsed} (IsRunning = {_isRunning})"; } }