From 17dab3df343b5d96524d3277e8f6b3144d090fa9 Mon Sep 17 00:00:00 2001
From: vpenades <5433822+vpenades@users.noreply.github.com>
Date: Mon, 5 Dec 2022 22:36:18 +0100
Subject: [PATCH] small refactor
---
src/SharpCompress/Factories/IFactory.cs | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/SharpCompress/Factories/IFactory.cs b/src/SharpCompress/Factories/IFactory.cs
index 778ea4a6..82e27f11 100644
--- a/src/SharpCompress/Factories/IFactory.cs
+++ b/src/SharpCompress/Factories/IFactory.cs
@@ -23,16 +23,16 @@ namespace SharpCompress.Factories
///
string Name { get; }
+ ///
+ /// Gets the archive Type in case it is a well known archive format.
+ ///
+ Common.ArchiveType? KnownArchiveType { get; }
+
///
/// returns the extensions typically used by this archive type.
///
///
- IEnumerable GetSupportedExtensions();
-
- ///
- /// returns the archive type in case it is a well known archive.
- ///
- Common.ArchiveType? KnownArchiveType { get; }
+ IEnumerable GetSupportedExtensions();
///
/// Returns true if the stream represents an archive of the format defined by this type.