1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Remove unused code

This commit is contained in:
ekrctb 2023-01-24 14:15:17 +09:00
parent 8405a3e172
commit e66e43e17c

View File

@ -1,12 +1,11 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Judgements
{
internal class JudgementResultEntry : IComparable<JudgementResultEntry>
internal class JudgementResultEntry
{
public readonly double Time;
@ -20,7 +19,5 @@ namespace osu.Game.Rulesets.Judgements
HitObjectEntry = hitObjectEntry;
Result = result;
}
public int CompareTo(JudgementResultEntry? other) => Time.CompareTo(other?.Time);
}
}