Skip to content

Commit c143c2b

Browse files
committed
Merge branch 'v16/feature/sign-providers' of https://github.com/umbraco/Umbraco-CMS into v16/feature/sign-providers
# Conflicts: # src/Umbraco.Cms.Api.Management/Services/Signs/HasScheduleSignProvider.cs
2 parents 54bb6aa + c0b48b7 commit c143c2b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/Umbraco.Cms.Api.Management/Services/Signs/HasScheduleSignProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Umbraco.Cms.Api.Management.Services.Signs;
77

88
/// <summary>
9-
/// Implements a <see cref="SignProviderCollection"/> that provides signs for documents that are scheduled for publication.
9+
/// Implements a <see cref="ISignProvider"/> that provides signs for documents that are scheduled for publication.
1010
/// </summary>
1111
internal class HasScheduleSignProvider : ISignProvider
1212
{

src/Umbraco.Cms.Api.Management/Services/Signs/ISignProvider.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Diagnostics.Eventing.Reader;
21
using Umbraco.Cms.Api.Management.ViewModels.Tree;
32
using Umbraco.Cms.Core.Models.Entities;
43

@@ -20,7 +19,7 @@ public interface ISignProvider
2019
/// Populates the provided tree item view models with signs.
2120
/// </summary>
2221
/// <typeparam name="TItem">Type of tree item view model.</typeparam>
23-
/// <param name="treeItemViewModels">The collection of tree item view models populatw with signs.</param>
22+
/// <param name="treeItemViewModels">The collection of tree item view models populated with signs.</param>
2423
/// <param name="entities">The entities from which the collection of tree item view models was populated.</param>
2524
Task PopulateTreeSignsAsync<TItem>(TItem[] treeItemViewModels, IEnumerable<IEntitySlim> entities)
2625
where TItem : EntityTreeItemResponseModel, new();

src/Umbraco.Infrastructure/Persistence/Repositories/Implement/DocumentRepository.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using System.Globalization;
22
using Microsoft.Extensions.Logging;
33
using NPoco;
4-
using Org.BouncyCastle.Crypto;
54
using Umbraco.Cms.Core;
65
using Umbraco.Cms.Core.Cache;
76
using Umbraco.Cms.Core.Events;

0 commit comments

Comments
 (0)