1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 17:40:12 +08:00

CA1715: use prefix for generic parameters.

This commit is contained in:
Huo Yaoyuan
2019-12-10 21:04:26 +08:00
Unverified
parent 61a6106e52
commit 40b43b85f1
11 changed files with 34 additions and 35 deletions
@@ -7,9 +7,9 @@ using osu.Framework.Platform;
namespace osu.Game.Database
{
public abstract class MutableDatabaseBackedStoreWithFileIncludes<T, U> : MutableDatabaseBackedStore<T>
where T : class, IHasPrimaryKey, ISoftDelete, IHasFiles<U>
where U : INamedFileInfo
public abstract class MutableDatabaseBackedStoreWithFileIncludes<T, TFileInfo> : MutableDatabaseBackedStore<T>
where T : class, IHasPrimaryKey, ISoftDelete, IHasFiles<TFileInfo>
where TFileInfo : INamedFileInfo
{
protected MutableDatabaseBackedStoreWithFileIncludes(IDatabaseContextFactory contextFactory, Storage storage = null)
: base(contextFactory, storage)