mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Remove redundant tuple naming
This commit is contained in:
parent
4475697a9c
commit
6d6de5b677
@ -74,7 +74,7 @@ namespace osu.Game.Scoring
|
||||
|
||||
var totalScores = await Task.WhenAll(scores.Select(s => GetTotalScoreAsync(s, cancellationToken: cancellationToken))).ConfigureAwait(false);
|
||||
|
||||
return scores.Select((score, index) => (score: score, totalScore: totalScores[index]))
|
||||
return scores.Select((score, index) => (score, totalScore: totalScores[index]))
|
||||
.OrderByDescending(g => g.totalScore)
|
||||
.ThenBy(g => g.score.OnlineScoreID)
|
||||
.Select(g => g.score)
|
||||
|
Loading…
Reference in New Issue
Block a user