From a00cb4992adf33fe2efd5f997f649792b1fc9b33 Mon Sep 17 00:00:00 2001 From: kesac Date: Sat, 6 Jan 2024 19:39:07 -0700 Subject: [PATCH] Removed deprecated method as all usage has been removed --- Syllabore/Syllabore.Tests/SyllableGeneratorTests.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Syllabore/Syllabore.Tests/SyllableGeneratorTests.cs b/Syllabore/Syllabore.Tests/SyllableGeneratorTests.cs index 8332460..a7ec6b6 100644 --- a/Syllabore/Syllabore.Tests/SyllableGeneratorTests.cs +++ b/Syllabore/Syllabore.Tests/SyllableGeneratorTests.cs @@ -10,15 +10,6 @@ namespace Syllabore.Tests public class SyllableGeneratorTests { - // Looking to deprecate this helper method - private static SyllableGenerator GetSyllableGeneratorWithAllComponentsDefined() - { - return new SyllableGenerator() - .WithLeadingConsonants("b").Sequences("cc") - .WithTrailingConsonants("d").Sequences("ff") - .WithVowels("o").Sequences("uu"); - } - private static SyllableGenerator GetSyllableGenerator( string vowels, string vowelSequences,