diff --git a/osu.Game/Online/API/Requests/GetUserRequest.cs b/osu.Game/Online/API/Requests/GetUserRequest.cs
index 9470c77b79..281926c096 100644
--- a/osu.Game/Online/API/Requests/GetUserRequest.cs
+++ b/osu.Game/Online/API/Requests/GetUserRequest.cs
@@ -11,7 +11,6 @@ namespace osu.Game.Online.API.Requests
private readonly string userIdentifier;
public readonly RulesetInfo Ruleset;
-
///
/// Gets the currently logged-in user.
///
diff --git a/osu.Game/Scoring/ScoreManager.cs b/osu.Game/Scoring/ScoreManager.cs
index fcf214268a..ccc5579ee5 100644
--- a/osu.Game/Scoring/ScoreManager.cs
+++ b/osu.Game/Scoring/ScoreManager.cs
@@ -10,7 +10,6 @@ using System.Threading;
using System.Threading.Tasks;
using JetBrains.Annotations;
using Microsoft.EntityFrameworkCore;
-using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Logging;
using osu.Framework.Platform;
@@ -24,7 +23,6 @@ using osu.Game.Rulesets;
using osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;
using osu.Game.Scoring.Legacy;
-using osu.Game.Users;
namespace osu.Game.Scoring
{
@@ -48,7 +46,7 @@ namespace osu.Game.Scoring
[CanBeNull]
private readonly UserIdLookupCache userIdLookupCache;
- private IAPIProvider api { get; set; }
+ private readonly IAPIProvider api;
public ScoreManager(RulesetStore rulesets, Func beatmaps, Storage storage, IAPIProvider api, IDatabaseContextFactory contextFactory, IIpcHost importHost = null,
Func difficulties = null, OsuConfigManager configManager = null, bool performOnlineLookups = false)