From 5cbe473598d6659ca631cfb68001fecfd364f37e Mon Sep 17 00:00:00 2001 From: postmeback Date: Mon, 28 Aug 2023 21:54:57 +0530 Subject: [PATCH] Only obsolete method to get deleted --- .../Helpers/RandomizationHelper.cs | 5 ----- 1 file changed, 5 deletions(-) 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. ///