1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 10:47:25 +08:00

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}";
}

View File

@ -25,7 +25,7 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty("latest_build")]
public APIChangelogBuild LatestBuild { get; set; }
public bool Equals(APIUpdateStream other) => this.Id == other?.Id;
public bool Equals(APIUpdateStream other) => Id == other?.Id;
public ColourInfo Colour
{