Clean up using statements

This commit is contained in:
Matt Nadareski
2024-04-24 11:03:09 -04:00
parent a82abc05ec
commit 558fee2200
2 changed files with 2 additions and 3 deletions

View File

@@ -1,8 +1,6 @@
using System;
using System.IO;
using System.Linq;
using BinaryObjectScanner.Interfaces;
using UnshieldSharp.Archive;
namespace BinaryObjectScanner.FileType
{

View File

@@ -1,7 +1,8 @@
using System;
using System.IO;
using System.Linq;
#if NET452_OR_GREATER || NETCOREAPP
using System.Text;
#endif
using BinaryObjectScanner.Utilities;
#if NET40_OR_GREATER || NETCOREAPP
using OpenMcdf;