Rename APIComments to APICommentsController

This commit is contained in:
Andrei Zavatski
2019-10-08 19:22:23 +03:00
parent 341702b91d
commit 4230b00110
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ using osu.Game.Online.API.Requests.Responses;
namespace osu.Game.Online.API.Requests namespace osu.Game.Online.API.Requests
{ {
public class GetCommentsRequest : APIRequest<APIComments> public class GetCommentsRequest : APIRequest<APICommentsController>
{ {
private readonly long id; private readonly long id;
private readonly int page; private readonly int page;

View File

@ -7,7 +7,7 @@ using System.Collections.Generic;
namespace osu.Game.Online.API.Requests.Responses namespace osu.Game.Online.API.Requests.Responses
{ {
public class APIComments public class APICommentsController
{ {
private List<Comment> comments; private List<Comment> comments;

View File

@ -86,7 +86,7 @@ namespace osu.Game.Overlays.Comments
api.Queue(request); api.Queue(request);
} }
private void onSuccess(APIComments response) private void onSuccess(APICommentsController response)
{ {
content.Clear(); content.Clear();