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. // 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. // See the LICENCE file in the repository root for full licence text.
using System;
using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.Judgements namespace osu.Game.Rulesets.Judgements
{ {
internal class JudgementResultEntry : IComparable<JudgementResultEntry> internal class JudgementResultEntry
{ {
public readonly double Time; public readonly double Time;
@ -20,7 +19,5 @@ namespace osu.Game.Rulesets.Judgements
HitObjectEntry = hitObjectEntry; HitObjectEntry = hitObjectEntry;
Result = result; Result = result;
} }
public int CompareTo(JudgementResultEntry? other) => Time.CompareTo(other?.Time);
} }
} }