Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static class IFileStoreExtensions
/// <param name="fileStore">The <see cref="IFileStore" />.</param>
/// <param name="paths">The path parts to combine.</param>
/// <returns>The full combined path.</returns>
public static string Combine(this IFileStore fileStore, params ReadOnlySpan<string> paths)
public static string Combine(this IFileStore fileStore, params string[] paths)
{
if (paths.Length == 0)
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Grand.Business.Core.Utilities.Messages.DotLiquidDrops;

public static class LiquidExtensions
{
public static List<string> GetTokens(params ReadOnlySpan<Type> drops)
public static List<string> GetTokens(params Type[] drops)
{
List<string> tokens = [];
foreach (var drop in drops)
Expand Down