mirror of
https://github.com/github/codeql.git
synced 2026-05-03 04:39:29 +02:00
C#: Make static member on generic class private
This commit is contained in:
@@ -133,7 +133,7 @@ namespace Semmle.Util
|
||||
/// </summary>
|
||||
/// <param name="input">The string to enumerate.</param>
|
||||
/// <returns>The sequence of integers.</returns>
|
||||
public static IEnumerable<int> ExtractIntegers(string input)
|
||||
private static IEnumerable<int> ExtractIntegers(string input)
|
||||
{
|
||||
var inNumber = false;
|
||||
var value = 0;
|
||||
|
||||
Reference in New Issue
Block a user