mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 14:37:39 +09: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)
|
switch (args.Action)
|
||||||
{
|
{
|
||||||
case NotifyCollectionChangedAction.Add:
|
case NotifyCollectionChangedAction.Add:
|
||||||
Debug.Assert(args.NewItems != null, "args.NewItems != null");
|
Debug.Assert(args.NewItems != null);
|
||||||
|
|
||||||
foreach (int user in args.NewItems)
|
foreach (int user in args.NewItems)
|
||||||
{
|
{
|
||||||
@ -86,7 +86,7 @@ namespace osu.Game.Tests.Visual.Gameplay
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case NotifyCollectionChangedAction.Remove:
|
case NotifyCollectionChangedAction.Remove:
|
||||||
Debug.Assert(args.OldItems != null, "args.OldItems != null");
|
Debug.Assert(args.OldItems != null);
|
||||||
|
|
||||||
foreach (int user in args.OldItems)
|
foreach (int user in args.OldItems)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user