mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Remove redundant prefixes
This commit is contained in:
@ -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}";
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user