diff --git a/src/TryAtSoftware.Randomizer.Core/Helpers/RandomizationHelper.cs b/src/TryAtSoftware.Randomizer.Core/Helpers/RandomizationHelper.cs index 98d1580..c345d05 100644 --- a/src/TryAtSoftware.Randomizer.Core/Helpers/RandomizationHelper.cs +++ b/src/TryAtSoftware.Randomizer.Core/Helpers/RandomizationHelper.cs @@ -213,11 +213,6 @@ public static string GetRandomString(int length, IReadOnlyList 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 possibleChars) => GetRandomString(length, possibleChars); - /// /// Generates a random boolean. ///