From f2dec6ff43b8fcd32a1ec3389f8ae1a59a246cbe Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Tue, 2 Oct 2018 11:44:49 -0400 Subject: [PATCH] Move PostWriteHandlers to the IO namespace --- src/Tgstation.Server.Host/{Core => IO}/IPostWriteHandler.cs | 2 +- src/Tgstation.Server.Host/{Core => IO}/PosixPostWriteHandler.cs | 2 +- .../{Core => IO}/WindowsPostWriteHandler.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/Tgstation.Server.Host/{Core => IO}/IPostWriteHandler.cs (86%) rename src/Tgstation.Server.Host/{Core => IO}/PosixPostWriteHandler.cs (94%) rename src/Tgstation.Server.Host/{Core => IO}/WindowsPostWriteHandler.cs (84%) diff --git a/src/Tgstation.Server.Host/Core/IPostWriteHandler.cs b/src/Tgstation.Server.Host/IO/IPostWriteHandler.cs similarity index 86% rename from src/Tgstation.Server.Host/Core/IPostWriteHandler.cs rename to src/Tgstation.Server.Host/IO/IPostWriteHandler.cs index 7209b44761..7686d742c8 100644 --- a/src/Tgstation.Server.Host/Core/IPostWriteHandler.cs +++ b/src/Tgstation.Server.Host/IO/IPostWriteHandler.cs @@ -1,4 +1,4 @@ -namespace Tgstation.Server.Host.Core +namespace Tgstation.Server.Host.IO { interface IPostWriteHandler { diff --git a/src/Tgstation.Server.Host/Core/PosixPostWriteHandler.cs b/src/Tgstation.Server.Host/IO/PosixPostWriteHandler.cs similarity index 94% rename from src/Tgstation.Server.Host/Core/PosixPostWriteHandler.cs rename to src/Tgstation.Server.Host/IO/PosixPostWriteHandler.cs index d121d2bca8..d656e0fa99 100644 --- a/src/Tgstation.Server.Host/Core/PosixPostWriteHandler.cs +++ b/src/Tgstation.Server.Host/IO/PosixPostWriteHandler.cs @@ -1,7 +1,7 @@ using Mono.Unix; using Mono.Unix.Native; -namespace Tgstation.Server.Host.Core +namespace Tgstation.Server.Host.IO { /// /// for POSIX systems diff --git a/src/Tgstation.Server.Host/Core/WindowsPostWriteHandler.cs b/src/Tgstation.Server.Host/IO/WindowsPostWriteHandler.cs similarity index 84% rename from src/Tgstation.Server.Host/Core/WindowsPostWriteHandler.cs rename to src/Tgstation.Server.Host/IO/WindowsPostWriteHandler.cs index 42ed2cdf1b..6d149644fa 100644 --- a/src/Tgstation.Server.Host/Core/WindowsPostWriteHandler.cs +++ b/src/Tgstation.Server.Host/IO/WindowsPostWriteHandler.cs @@ -1,4 +1,4 @@ -namespace Tgstation.Server.Host.Core +namespace Tgstation.Server.Host.IO { /// /// for Windows systems