Remove redundant `this.` in assignment

This commit is contained in:
Dean Herbert 2021-09-07 17:45:21 +09:00
parent 1aa95de530
commit 92f59c10f5
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ public class LeaderboardScore : OsuClickableContainer, IHasContextMenu
public LeaderboardScore(ScoreInfo score, int? rank, bool allowHighlight = true)
{
this.Score = score;
Score = score;
this.rank = rank;
this.allowHighlight = allowHighlight;