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 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}"; public override string ToString() => $"{UpdateStream.DisplayName} {DisplayVersion}";
} }

View File

@ -25,7 +25,7 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty("latest_build")] [JsonProperty("latest_build")]
public APIChangelogBuild LatestBuild { get; set; } 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 public ColourInfo Colour
{ {