Remove redundant prefixes

This commit is contained in:
Dean Herbert
2019-05-21 14:02:34 +09:00
parent e7c8c4f787
commit a9447eaf7b
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ namespace osu.Game.Online.API.Requests.Responses
public APIChangelogBuild Previous { get; set; }
}
public bool Equals(APIChangelogBuild other) => this.Id == other?.Id;
public bool Equals(APIChangelogBuild other) => Id == other?.Id;
public override string ToString() => $"{UpdateStream.DisplayName} {DisplayVersion}";
}