Skip to content

Commit 69fb792

Browse files
author
Bart Koelman
committed
cibuild fixes
1 parent d6b1f9d commit 69fb792

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/JsonApiDotNetCore/CollectionConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public IEnumerable CopyToTypedCollection(IEnumerable source, Type collectionType
4646
/// <summary>
4747
/// Returns a compatible collection type that can be instantiated, for example IList{Article} -> List{Article} or ISet{Article} -> HashSet{Article}
4848
/// </summary>
49-
public Type ToConcreteCollectionType(Type collectionType)
49+
private Type ToConcreteCollectionType(Type collectionType)
5050
{
5151
if (collectionType.IsInterface && collectionType.IsGenericType)
5252
{

src/JsonApiDotNetCore/Queries/Internal/QueryableBuilding/SelectClauseBuilder.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using JetBrains.Annotations;
77
using JsonApiDotNetCore.Configuration;
88
using JsonApiDotNetCore.Queries.Expressions;
9-
using JsonApiDotNetCore.Repositories;
109
using JsonApiDotNetCore.Resources;
1110
using JsonApiDotNetCore.Resources.Annotations;
1211
using Microsoft.EntityFrameworkCore;

0 commit comments

Comments
 (0)