Skip to content

Commit e28e255

Browse files
committed
Make split private
1 parent 8d44004 commit e28e255

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Hashids.net/Hashids.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,8 @@ private static void ConsistentShuffle(Span<char> alphabet, ReadOnlySpan<char> sa
514514
(alphabet[i], alphabet[j]) = (alphabet[j], alphabet[i]);
515515
}
516516
}
517-
518-
public static (int count, (int, int)[] ranges) Split(ReadOnlySpan<char> line, ReadOnlySpan<char> separators)
517+
518+
private static (int count, (int, int)[] ranges) Split(ReadOnlySpan<char> line, ReadOnlySpan<char> separators)
519519
{
520520
var count = 0;
521521
var indexStart = 0;

0 commit comments

Comments
 (0)