Skip to content

Commit f6b9643

Browse files
committed
Remove testing stuff
1 parent a8f269e commit f6b9643

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

CompactGUI.Core/Compactor.cs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ public class Compactor : ICompressor, IDisposable
2727
public Compactor(string folderPath, WOFCompressionAlgorithm compressionLevel, string[] excludedFileTypes)
2828
{
2929
workingDirectory = folderPath;
30-
excludedFileExtensions = new HashSet<string>(excludedFileTypes).MyTag();
31-
32-
int sum = 1 + 2.MyTag();
30+
excludedFileExtensions = new HashSet<string>(excludedFileTypes);
3331
wofCompressionAlgorithm = compressionLevel;
3432

3533
InitializeCompressionInfoPointer();
@@ -158,8 +156,3 @@ public void Dispose()
158156

159157

160158
}
161-
162-
public static class MyTagExtensions
163-
{
164-
public static T MyTag<T>(this T obj) => obj;
165-
}

0 commit comments

Comments
 (0)