mirror of
https://github.com/ppy/osu
synced 2025-01-12 00:59:35 +00:00
Make method private for now
This commit is contained in:
parent
510ce9345f
commit
5d3d25d3b6
@ -126,7 +126,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
{
|
||||
base.LoadComplete();
|
||||
|
||||
Apply(HitObject);
|
||||
apply(HitObject);
|
||||
|
||||
if (HitObject is IHasComboInformation combo)
|
||||
{
|
||||
@ -137,7 +137,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
updateState(ArmedState.Idle, true);
|
||||
}
|
||||
|
||||
protected void Apply(HitObject hitObject)
|
||||
private void apply(HitObject hitObject)
|
||||
{
|
||||
#pragma warning disable 618 // can be removed 20200417
|
||||
if (GetType().GetMethod(nameof(AddNested), BindingFlags.NonPublic | BindingFlags.Instance)?.DeclaringType != typeof(DrawableHitObject))
|
||||
|
Loading…
Reference in New Issue
Block a user