We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8bed6b commit 479c60dCopy full SHA for 479c60d
1 file changed
SQL.Formatter/Core/Util/Utils.cs
@@ -10,11 +10,6 @@ public static List<T> NullToEmpty<T>(List<T> list)
10
return list ?? new List<T>();
11
}
12
13
- public static string Repeat(string s, int n)
14
- {
15
- return string.Concat(Enumerable.Repeat(s, n));
16
- }
17
-
18
public static List<T> Concat<T>(List<T> l1, List<T> l2)
19
{
20
return l1.Concat(l2).ToList();
0 commit comments