From a0525562ff58d19bd029a0b5ed1eb4aacd25fc98 Mon Sep 17 00:00:00 2001 From: Anna Date: Tue, 15 Feb 2022 13:02:46 -0500 Subject: [PATCH] chore: remove boms --- ChatTwo/Chunk.cs | 2 +- ChatTwo/Code/ChatCode.cs | 2 +- ChatTwo/Code/ChatType.cs | 2 +- ChatTwo/Code/InputChannel.cs | 2 +- ChatTwo/Code/InputChannelExt.cs | 2 +- ChatTwo/Configuration.cs | 2 +- ChatTwo/GameFunctions/Chat.cs | 2 +- ChatTwo/GameFunctions/Context.cs | 2 +- ChatTwo/GameFunctions/GameFunctions.cs | 2 +- ChatTwo/GameFunctions/Party.cs | 2 +- ChatTwo/GameFunctions/Types/ChannelSwitchInfo.cs | 2 +- ChatTwo/GameFunctions/Types/ChatActivatedArgs.cs | 2 +- ChatTwo/GameFunctions/Types/ModifierFlag.cs | 2 +- ChatTwo/GameFunctions/Types/RotateMode.cs | 2 +- ChatTwo/GameFunctions/Types/TellHistoryInfo.cs | 2 +- ChatTwo/GameFunctions/Types/TellTarget.cs | 2 +- ChatTwo/Message.cs | 2 +- ChatTwo/PayloadHandler.cs | 2 +- ChatTwo/Plugin.cs | 2 +- ChatTwo/PluginUi.cs | 2 +- ChatTwo/Resources/Language.Designer.cs | 2 +- ChatTwo/Resources/Language.de.resx | 2 +- ChatTwo/Resources/Language.es.resx | 2 +- ChatTwo/Resources/Language.fr.resx | 2 +- ChatTwo/Resources/Language.pt-BR.resx | 2 +- ChatTwo/Resources/Language.resx | 2 +- ChatTwo/Resources/Language.ru.resx | 2 +- ChatTwo/Store.cs | 2 +- ChatTwo/TextureCache.cs | 2 +- ChatTwo/Ui/ChatLog.cs | 2 +- ChatTwo/Ui/CommandHelp.cs | 2 +- ChatTwo/Ui/Fonts.cs | 2 +- ChatTwo/Ui/Settings.cs | 2 +- ChatTwo/Ui/SettingsTabs/About.cs | 2 +- ChatTwo/Ui/SettingsTabs/ChatColours.cs | 2 +- ChatTwo/Ui/SettingsTabs/Database.cs | 2 +- ChatTwo/Ui/SettingsTabs/Fonts.cs | 2 +- ChatTwo/Ui/SettingsTabs/ISettingsTab.cs | 2 +- ChatTwo/Ui/SettingsTabs/Miscellaneous.cs | 2 +- ChatTwo/Ui/SettingsTabs/Tabs.cs | 2 +- ChatTwo/Ui/UiComponent.cs | 2 +- ChatTwo/Util/ChunkUtil.cs | 2 +- ChatTwo/Util/ColourUtil.cs | 2 +- ChatTwo/Util/IconUtil.cs | 2 +- ChatTwo/Util/ImGuiUtil.cs | 2 +- ChatTwo/Util/NumUtil.cs | 2 +- ChatTwo/Util/Payloads.cs | 2 +- ChatTwo/Util/StringUtil.cs | 2 +- ChatTwo/Util/TabsUtil.cs | 2 +- 49 files changed, 49 insertions(+), 49 deletions(-) diff --git a/ChatTwo/Chunk.cs b/ChatTwo/Chunk.cs index a259cf9..b909dca 100755 --- a/ChatTwo/Chunk.cs +++ b/ChatTwo/Chunk.cs @@ -1,4 +1,4 @@ -using ChatTwo.Code; +using ChatTwo.Code; using Dalamud.Game.Text.SeStringHandling; using LiteDB; diff --git a/ChatTwo/Code/ChatCode.cs b/ChatTwo/Code/ChatCode.cs index 7b54853..2a7a411 100755 --- a/ChatTwo/Code/ChatCode.cs +++ b/ChatTwo/Code/ChatCode.cs @@ -1,4 +1,4 @@ -using LiteDB; +using LiteDB; namespace ChatTwo.Code; diff --git a/ChatTwo/Code/ChatType.cs b/ChatTwo/Code/ChatType.cs index 657394c..2daa3f8 100755 --- a/ChatTwo/Code/ChatType.cs +++ b/ChatTwo/Code/ChatType.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.Code; +namespace ChatTwo.Code; [System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1028:Enum Storage should be Int32")] internal enum ChatType : ushort { diff --git a/ChatTwo/Code/InputChannel.cs b/ChatTwo/Code/InputChannel.cs index e57915c..6929285 100755 --- a/ChatTwo/Code/InputChannel.cs +++ b/ChatTwo/Code/InputChannel.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.Code; +namespace ChatTwo.Code; internal enum InputChannel : uint { Tell = 0, diff --git a/ChatTwo/Code/InputChannelExt.cs b/ChatTwo/Code/InputChannelExt.cs index 3a339ec..02aff8a 100755 --- a/ChatTwo/Code/InputChannelExt.cs +++ b/ChatTwo/Code/InputChannelExt.cs @@ -1,4 +1,4 @@ -using Dalamud.Data; +using Dalamud.Data; using Lumina.Excel.GeneratedSheets; namespace ChatTwo.Code; diff --git a/ChatTwo/Configuration.cs b/ChatTwo/Configuration.cs index 827b798..b64b6d0 100755 --- a/ChatTwo/Configuration.cs +++ b/ChatTwo/Configuration.cs @@ -1,4 +1,4 @@ -using ChatTwo.Code; +using ChatTwo.Code; using ChatTwo.Resources; using ChatTwo.Ui; using Dalamud.Configuration; diff --git a/ChatTwo/GameFunctions/Chat.cs b/ChatTwo/GameFunctions/Chat.cs index 8159b48..f160487 100755 --- a/ChatTwo/GameFunctions/Chat.cs +++ b/ChatTwo/GameFunctions/Chat.cs @@ -1,4 +1,4 @@ -using ChatTwo.Code; +using ChatTwo.Code; using ChatTwo.GameFunctions.Types; using ChatTwo.Util; using Dalamud.Game.ClientState.Keys; diff --git a/ChatTwo/GameFunctions/Context.cs b/ChatTwo/GameFunctions/Context.cs index 7695e75..90d31b1 100755 --- a/ChatTwo/GameFunctions/Context.cs +++ b/ChatTwo/GameFunctions/Context.cs @@ -1,4 +1,4 @@ -using ChatTwo.Util; +using ChatTwo.Util; using Dalamud.Utility.Signatures; using FFXIVClientStructs.FFXIV.Client.System.Framework; using FFXIVClientStructs.FFXIV.Client.UI; diff --git a/ChatTwo/GameFunctions/GameFunctions.cs b/ChatTwo/GameFunctions/GameFunctions.cs index ff46574..3a57428 100755 --- a/ChatTwo/GameFunctions/GameFunctions.cs +++ b/ChatTwo/GameFunctions/GameFunctions.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; using Dalamud.Hooking; using Dalamud.Memory; using Dalamud.Utility.Signatures; diff --git a/ChatTwo/GameFunctions/Party.cs b/ChatTwo/GameFunctions/Party.cs index 7c9cc0d..3031d8a 100755 --- a/ChatTwo/GameFunctions/Party.cs +++ b/ChatTwo/GameFunctions/Party.cs @@ -1,4 +1,4 @@ -using ChatTwo.Util; +using ChatTwo.Util; using Dalamud.Utility.Signatures; using FFXIVClientStructs.FFXIV.Client.System.Framework; using FFXIVClientStructs.FFXIV.Client.UI.Agent; diff --git a/ChatTwo/GameFunctions/Types/ChannelSwitchInfo.cs b/ChatTwo/GameFunctions/Types/ChannelSwitchInfo.cs index a9368bd..f4d1c87 100755 --- a/ChatTwo/GameFunctions/Types/ChannelSwitchInfo.cs +++ b/ChatTwo/GameFunctions/Types/ChannelSwitchInfo.cs @@ -1,4 +1,4 @@ -using ChatTwo.Code; +using ChatTwo.Code; namespace ChatTwo.GameFunctions.Types; diff --git a/ChatTwo/GameFunctions/Types/ChatActivatedArgs.cs b/ChatTwo/GameFunctions/Types/ChatActivatedArgs.cs index dfb6cdb..da753da 100755 --- a/ChatTwo/GameFunctions/Types/ChatActivatedArgs.cs +++ b/ChatTwo/GameFunctions/Types/ChatActivatedArgs.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.GameFunctions.Types; +namespace ChatTwo.GameFunctions.Types; internal sealed class ChatActivatedArgs { internal string? AddIfNotPresent { get; init; } diff --git a/ChatTwo/GameFunctions/Types/ModifierFlag.cs b/ChatTwo/GameFunctions/Types/ModifierFlag.cs index 9abc5eb..08b658a 100755 --- a/ChatTwo/GameFunctions/Types/ModifierFlag.cs +++ b/ChatTwo/GameFunctions/Types/ModifierFlag.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.GameFunctions.Types; +namespace ChatTwo.GameFunctions.Types; [Flags] internal enum ModifierFlag { diff --git a/ChatTwo/GameFunctions/Types/RotateMode.cs b/ChatTwo/GameFunctions/Types/RotateMode.cs index 41b084a..6282415 100755 --- a/ChatTwo/GameFunctions/Types/RotateMode.cs +++ b/ChatTwo/GameFunctions/Types/RotateMode.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.GameFunctions.Types; +namespace ChatTwo.GameFunctions.Types; internal enum RotateMode { None, diff --git a/ChatTwo/GameFunctions/Types/TellHistoryInfo.cs b/ChatTwo/GameFunctions/Types/TellHistoryInfo.cs index b03bd49..3804724 100755 --- a/ChatTwo/GameFunctions/Types/TellHistoryInfo.cs +++ b/ChatTwo/GameFunctions/Types/TellHistoryInfo.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.GameFunctions.Types; +namespace ChatTwo.GameFunctions.Types; internal sealed class TellHistoryInfo { internal string Name { get; } diff --git a/ChatTwo/GameFunctions/Types/TellTarget.cs b/ChatTwo/GameFunctions/Types/TellTarget.cs index b17afa5..47b6324 100755 --- a/ChatTwo/GameFunctions/Types/TellTarget.cs +++ b/ChatTwo/GameFunctions/Types/TellTarget.cs @@ -1,4 +1,4 @@ -namespace ChatTwo.GameFunctions.Types; +namespace ChatTwo.GameFunctions.Types; internal sealed class TellTarget { internal string Name { get; } diff --git a/ChatTwo/Message.cs b/ChatTwo/Message.cs index bef5b4c..3615738 100755 --- a/ChatTwo/Message.cs +++ b/ChatTwo/Message.cs @@ -1,4 +1,4 @@ -using ChatTwo.Code; +using ChatTwo.Code; using Dalamud.Game.Text.SeStringHandling; using LiteDB; diff --git a/ChatTwo/PayloadHandler.cs b/ChatTwo/PayloadHandler.cs index 61b3004..461893c 100755 --- a/ChatTwo/PayloadHandler.cs +++ b/ChatTwo/PayloadHandler.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using System.Reflection; using ChatTwo.Code; using ChatTwo.Ui; diff --git a/ChatTwo/Plugin.cs b/ChatTwo/Plugin.cs index 7666e53..8daf3c2 100755 --- a/ChatTwo/Plugin.cs +++ b/ChatTwo/Plugin.cs @@ -1,4 +1,4 @@ -using System.Diagnostics; +using System.Diagnostics; using System.Globalization; using ChatTwo.Resources; using Dalamud.Data; diff --git a/ChatTwo/PluginUi.cs b/ChatTwo/PluginUi.cs index 8403d42..86350b6 100755 --- a/ChatTwo/PluginUi.cs +++ b/ChatTwo/PluginUi.cs @@ -1,4 +1,4 @@ -using System.Numerics; +using System.Numerics; using System.Runtime.InteropServices; using ChatTwo.Ui; using Dalamud.Interface; diff --git a/ChatTwo/Resources/Language.Designer.cs b/ChatTwo/Resources/Language.Designer.cs index 8a083ad..93a0edc 100755 --- a/ChatTwo/Resources/Language.Designer.cs +++ b/ChatTwo/Resources/Language.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 diff --git a/ChatTwo/Resources/Language.de.resx b/ChatTwo/Resources/Language.de.resx index fdeb584..393cf91 100755 --- a/ChatTwo/Resources/Language.de.resx +++ b/ChatTwo/Resources/Language.de.resx @@ -1,4 +1,4 @@ - +