Skip to content

Commit

Permalink
remove ShallowClone
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Jun 12, 2022
1 parent 52f650b commit a567647
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/Verify/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

static class Extensions
{
public static List<T> Clone<T>(this List<T> original) =>
new(original);

public static string? Configuration(this Assembly assembly)
{
var attribute = assembly.GetCustomAttribute<AssemblyConfigurationAttribute>();
Expand Down
5 changes: 0 additions & 5 deletions src/Verify/ShallowClone.cs

This file was deleted.

0 comments on commit a567647

Please sign in to comment.