Skip to content

Commit 63e1731

Browse files
committed
C#: Make static member on generic class private
1 parent 6cf20d5 commit 63e1731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/extractor/Semmle.Util/FuzzyDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private static string StripDigits(string input)
133133
/// </summary>
134134
/// <param name="input">The string to enumerate.</param>
135135
/// <returns>The sequence of integers.</returns>
136-
public static IEnumerable<int> ExtractIntegers(string input)
136+
private static IEnumerable<int> ExtractIntegers(string input)
137137
{
138138
var inNumber = false;
139139
var value = 0;

0 commit comments

Comments
 (0)