mirror of
https://github.com/ppy/osu
synced 2025-02-14 17:17:15 +00:00
Remove unused code
This commit is contained in:
parent
8405a3e172
commit
e66e43e17c
@ -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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user