mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 16:52:54 +08:00
Remove redundant prefixes
This commit is contained in:
parent
e7c8c4f787
commit
a9447eaf7b
@ -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}";
|
||||
}
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user