We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f269e commit f6b9643Copy full SHA for f6b9643
1 file changed
CompactGUI.Core/Compactor.cs
@@ -27,9 +27,7 @@ public class Compactor : ICompressor, IDisposable
27
public Compactor(string folderPath, WOFCompressionAlgorithm compressionLevel, string[] excludedFileTypes)
28
{
29
workingDirectory = folderPath;
30
- excludedFileExtensions = new HashSet<string>(excludedFileTypes).MyTag();
31
-
32
- int sum = 1 + 2.MyTag();
+ excludedFileExtensions = new HashSet<string>(excludedFileTypes);
33
wofCompressionAlgorithm = compressionLevel;
34
35
InitializeCompressionInfoPointer();
@@ -158,8 +156,3 @@ public void Dispose()
158
156
159
157
160
}
161
162
-public static class MyTagExtensions
163
-{
164
- public static T MyTag<T>(this T obj) => obj;
165
-}
0 commit comments