1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 19:22:54 +08:00

Remove annotation

This commit is contained in:
Dean Herbert 2018-04-23 22:09:04 +09:00
parent 843385af0d
commit 93b77d9cfe

View File

@ -4,7 +4,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using JetBrains.Annotations;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
@ -54,7 +53,7 @@ namespace osu.Game.Screens.Edit.Screens.Compose.Layers
drawable.DragRequested += onDragRequested;
}
public override bool Remove([NotNull] HitObjectMask drawable)
public override bool Remove(HitObjectMask drawable)
{
if (drawable == null) throw new ArgumentNullException(nameof(drawable));