From 6b0b518fd2207000b2fda761aa0ed543c30f7581 Mon Sep 17 00:00:00 2001 From: FreezyLemon Date: Thu, 7 Dec 2017 16:58:16 +0100 Subject: [PATCH] *ahem* REVERTED the changes to GetUserRequest because they're not needed (yet) --- osu.Game/Online/API/Requests/GetUserRequest.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/osu.Game/Online/API/Requests/GetUserRequest.cs b/osu.Game/Online/API/Requests/GetUserRequest.cs index 3fbfd6bf51..2e3e7b01c8 100644 --- a/osu.Game/Online/API/Requests/GetUserRequest.cs +++ b/osu.Game/Online/API/Requests/GetUserRequest.cs @@ -9,13 +9,11 @@ namespace osu.Game.Online.API.Requests { private long? userId; - /// The user's ID. public GetUserRequest(long? userId = null) { this.userId = userId; } - // Prefer ID over name protected override string Target => userId.HasValue ? $@"users/{userId}" : @"me"; } }