Remove duplicate interface specification

This commit is contained in:
Dean Herbert 2021-09-30 19:25:08 +09:00
parent c05a8fc4a2
commit 66409147dc
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Game.Database
/// Represents a model manager that publishes events when <typeparamref name="TModel"/>s are added or removed.
/// </summary>
/// <typeparam name="TModel">The model type.</typeparam>
public interface IModelManager<TModel> : IModelImporter<TModel>, IPostNotifications
public interface IModelManager<TModel> : IModelImporter<TModel>
where TModel : class
{
/// <summary>