From 008b59a57bad75dc5cbf12449d15eb300c5a8321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=99=E7=A9=8F=E9=9D=84?= <170472707+seionmoya@users.noreply.github.com> Date: Wed, 25 Sep 2024 20:10:55 +0200 Subject: [PATCH] Move using declarations --- Zlib.Managed/ComponentAce/ZOutputStream.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Zlib.Managed/ComponentAce/ZOutputStream.cs b/Zlib.Managed/ComponentAce/ZOutputStream.cs index 4020a82..a9278ba 100644 --- a/Zlib.Managed/ComponentAce/ZOutputStream.cs +++ b/Zlib.Managed/ComponentAce/ZOutputStream.cs @@ -3,14 +3,13 @@ // All rights reserved. // license: see LICENSE for more details. +using System; +using System.Diagnostics.CodeAnalysis; +using System.IO; using Elskom.Generic.Libs; namespace ComponentAce.Compression.Libs.zlib { - using System; - using System.Diagnostics.CodeAnalysis; - using System.IO; - /// /// Class that provices a zlib output stream that supports /// compression and decompression.