mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:23:22 +08:00
Use MustDisposeResource
annotation to appease ReSharper inspections
This commit is contained in:
parent
6cfe1356cd
commit
4cf6ab40f6
@ -6,6 +6,7 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using System.ComponentModel;
|
||||
using JetBrains.Annotations;
|
||||
using Realms;
|
||||
using Realms.Schema;
|
||||
|
||||
@ -15,8 +16,12 @@ namespace osu.Game.Database
|
||||
{
|
||||
private IList<T> emptySet => Array.Empty<T>();
|
||||
|
||||
[MustDisposeResource]
|
||||
public IEnumerator<T> GetEnumerator() => emptySet.GetEnumerator();
|
||||
|
||||
[MustDisposeResource]
|
||||
IEnumerator IEnumerable.GetEnumerator() => emptySet.GetEnumerator();
|
||||
|
||||
public int Count => emptySet.Count;
|
||||
public T this[int index] => emptySet[index];
|
||||
public int IndexOf(object? item) => item == null ? -1 : emptySet.IndexOf((T)item);
|
||||
|
Loading…
Reference in New Issue
Block a user