From ed79cc04b915173e1c27318ad90194a3f9caf515 Mon Sep 17 00:00:00 2001 From: Drew Noakes Date: Thu, 21 Mar 2024 11:11:13 +1100 Subject: [PATCH] Remove redundant using directives --- MetadataExtractor/Formats/Jpeg/JpegComponent.cs | 4 ---- MetadataExtractor/Formats/Tga/TgaExtensionReader.cs | 2 -- 2 files changed, 6 deletions(-) diff --git a/MetadataExtractor/Formats/Jpeg/JpegComponent.cs b/MetadataExtractor/Formats/Jpeg/JpegComponent.cs index 796aa2355..c8be245e0 100644 --- a/MetadataExtractor/Formats/Jpeg/JpegComponent.cs +++ b/MetadataExtractor/Formats/Jpeg/JpegComponent.cs @@ -1,9 +1,5 @@ // Copyright (c) Drew Noakes and contributors. All Rights Reserved. Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. -#if !NETSTANDARD1_3 -using System; -#endif - namespace MetadataExtractor.Formats.Jpeg { /// diff --git a/MetadataExtractor/Formats/Tga/TgaExtensionReader.cs b/MetadataExtractor/Formats/Tga/TgaExtensionReader.cs index 9e07b6b9d..5f2b66eba 100644 --- a/MetadataExtractor/Formats/Tga/TgaExtensionReader.cs +++ b/MetadataExtractor/Formats/Tga/TgaExtensionReader.cs @@ -1,7 +1,5 @@ // Copyright (c) Drew Noakes and contributors. All Rights Reserved. Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. -using System.Buffers; - namespace MetadataExtractor.Formats.Tga { /// Reads TGA image file extension area.