Skip to content

Commit cfacf4e

Browse files
committed
Rollback unnecessary breaking change
1 parent d8551e4 commit cfacf4e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/Umbraco.Web.BackOffice/Services/ConflictingRouteService.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@ namespace Umbraco.Cms.Web.BackOffice.Services
1313
public class ConflictingRouteService : IConflictingRouteService
1414
{
1515
private readonly TypeLoader _typeLoader;
16-
private readonly IEnumerable<EndpointDataSource> _endpointDataSources;
1716

1817
/// <summary>
1918
/// Initializes a new instance of the <see cref="ConflictingRouteService"/> class.
2019
/// </summary>
21-
public ConflictingRouteService(TypeLoader typeLoader, IEnumerable<EndpointDataSource> endpointDataSources)
20+
public ConflictingRouteService(TypeLoader typeLoader)
2221
{
2322
_typeLoader = typeLoader;
24-
_endpointDataSources = endpointDataSources;
2523
}
2624

2725
/// <inheritdoc/>

0 commit comments

Comments
 (0)