Skip to content

Commit

Permalink
Should fix the breaking changes in #15318
Browse files Browse the repository at this point in the history
  • Loading branch information
nul800sebastiaan committed Dec 5, 2023
1 parent e7279d2 commit 5952791
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Umbraco.Core/Deploy/IFileTypeCollection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public interface IFileTypeCollection
/// <returns>
/// <c>true</c> if the file type associated with the specified entity type was found; otherwise, <c>false</c>.
/// </returns>
bool TryGetValue(string entityType, [NotNullWhen(true)] out IFileType? fileType);
bool TryGetValue(string entityType, [NotNullWhen(true)] out IFileType? fileType) => throw new NotImplementedException();

/// <summary>
/// Determines whether this collection contains a file type for the specified entity type.
Expand All @@ -44,5 +44,5 @@ public interface IFileTypeCollection
/// <returns>
/// The entity types.
/// </returns>
ICollection<string> GetEntityTypes();
ICollection<string> GetEntityTypes() => throw new NotImplementedException();
}

0 comments on commit 5952791

Please sign in to comment.