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