From 2989c163a891c4ac730e799e1457b1bfb2ecc028 Mon Sep 17 00:00:00 2001 From: TSRBerry <20988865+TSRBerry@users.noreply.github.com> Date: Mon, 4 Dec 2023 14:17:13 +0100 Subject: editorconfig: Set default encoding to UTF-8 (#5793) * editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8 --- src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs | 2 +- src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs | 2 +- src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Ryujinx.Common/Logging/Formatters') diff --git a/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs index ed2a8144..b1cffcb5 100644 --- a/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs +++ b/src/Ryujinx.Common/Logging/Formatters/DefaultLogFormatter.cs @@ -1,4 +1,4 @@ -using System.Diagnostics; +using System.Diagnostics; using System.Text; namespace Ryujinx.Common.Logging.Formatters diff --git a/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs index 1ee73acd..b1cc0eae 100644 --- a/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs +++ b/src/Ryujinx.Common/Logging/Formatters/DynamicObjectFormatter.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System; using System.Reflection; using System.Text; diff --git a/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs b/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs index 5c660a52..3a2261a6 100644 --- a/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs +++ b/src/Ryujinx.Common/Logging/Formatters/ILogFormatter.cs @@ -1,4 +1,4 @@ -namespace Ryujinx.Common.Logging.Formatters +namespace Ryujinx.Common.Logging.Formatters { interface ILogFormatter { -- cgit v1.2.3