Remove unnecessary warning suppression

This commit is contained in:
Dean Herbert 2021-01-11 16:24:12 +09:00
parent 6c90f9ceed
commit cdb3d20fc6

View File

@ -2,13 +2,11 @@
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
using Realms;
namespace osu.Game.Database
{
[SuppressMessage("ReSharper", "CA2225")]
public class RealmWrapper<T> : IEquatable<RealmWrapper<T>>
where T : RealmObject, IHasGuidPrimaryKey
{