Skip to content

Commit 582bb24

Browse files
committed
chore: fix spacing in test file
1 parent 30565eb commit 582bb24

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/JsonApiDotNetCore/Hooks/ResourceHookExecutor.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ public virtual IEnumerable<TEntity> BeforeUpdate<TEntity>(IEnumerable<TEntity> e
5959
return entities;
6060
}
6161

62-
6362
/// <inheritdoc/>
6463
public virtual IEnumerable<TEntity> BeforeCreate<TEntity>(IEnumerable<TEntity> entities, ResourcePipeline pipeline) where TEntity : class, IIdentifiable
6564
{
@@ -366,7 +365,6 @@ void ValidateHookResponse<T>(IEnumerable<T> returnedList, ResourcePipeline pipel
366365
}
367366
}
368367

369-
370368
/// <summary>
371369
/// A helper method to call a hook on <paramref name="container"/> reflectively.
372370
/// </summary>
@@ -428,7 +426,6 @@ HashSet<IIdentifiable> GetAllowedEntities(IEnumerable source, IEnumerable<string
428426
return new HashSet<IIdentifiable>(source.Cast<IIdentifiable>().Where(ue => allowedIds.Contains(ue.StringId)));
429427
}
430428

431-
432429
/// <summary>
433430
/// given the set of <paramref name="uniqueEntities"/>, it will load all the
434431
/// values from the database of these entites.
@@ -447,7 +444,6 @@ IEnumerable LoadDbValues(Type entityType, IEnumerable uniqueEntities, ResourceHo
447444
return _executorHelper.LoadDbValues(entityType, uniqueEntities, targetHook, relationshipsToNextLayer);
448445
}
449446

450-
451447
/// <summary>
452448
/// Fires the AfterUpdateRelationship hook
453449
/// </summary>

0 commit comments

Comments
 (0)