Skip to content
Open
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 @@ -213,11 +213,6 @@ public static string GetRandomString(int length, IReadOnlyList<char> charactersM
return sb.ToString();
}

#pragma warning disable S1133 // This directive should be removed soon. See issue #52
[Obsolete("This method will be removed with the next major release. Use `GetRandomString` instead!")]
#pragma warning restore S1133
public static string GetRandomStringCombination(int length, IReadOnlyList<char> possibleChars) => GetRandomString(length, possibleChars);

/// <summary>
/// Generates a random boolean.
/// </summary>
Expand Down