Remove redundant prefix

This commit is contained in:
Dean Herbert 2019-12-05 14:50:12 +09:00
parent 6e9157d59c
commit de413418c7
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public class GetUserRankingsRequest : GetRankingsRequest<GetUsersResponse>
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;
}