Skip to content

Commit 479c60d

Browse files
committed
Cleanup: Remove dead code
1 parent c8bed6b commit 479c60d

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

SQL.Formatter/Core/Util/Utils.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ public static List<T> NullToEmpty<T>(List<T> list)
1010
return list ?? new List<T>();
1111
}
1212

13-
public static string Repeat(string s, int n)
14-
{
15-
return string.Concat(Enumerable.Repeat(s, n));
16-
}
17-
1813
public static List<T> Concat<T>(List<T> l1, List<T> l2)
1914
{
2015
return l1.Concat(l2).ToList();

0 commit comments

Comments
 (0)