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

Remove redundant prefix

This commit is contained in:
Dean Herbert 2019-12-05 14:50:12 +09:00
parent 6e9157d59c
commit de413418c7

View File

@ -15,7 +15,7 @@ namespace osu.Game.Online.API.Requests
public GetUserRankingsRequest(RulesetInfo ruleset, UserRankingsType type = UserRankingsType.Performance, int page = 1, string country = null)
: base(ruleset, page)
{
this.Type = type;
Type = type;
this.country = country;
}