mirror of
https://github.com/ppy/osu
synced 2025-01-11 00:29:30 +00:00
Remove assert messages
This commit is contained in:
parent
3f88340304
commit
d023ad8ad1
@ -75,7 +75,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
switch (args.Action)
|
||||
{
|
||||
case NotifyCollectionChangedAction.Add:
|
||||
Debug.Assert(args.NewItems != null, "args.NewItems != null");
|
||||
Debug.Assert(args.NewItems != null);
|
||||
|
||||
foreach (int user in args.NewItems)
|
||||
{
|
||||
@ -86,7 +86,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
||||
break;
|
||||
|
||||
case NotifyCollectionChangedAction.Remove:
|
||||
Debug.Assert(args.OldItems != null, "args.OldItems != null");
|
||||
Debug.Assert(args.OldItems != null);
|
||||
|
||||
foreach (int user in args.OldItems)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user