From eba722b23a5416f8559bd93e2ed4b7519708f15b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 24 Jul 2025 08:59:57 -0400 Subject: [PATCH] Be consistent about end-of-file newlines --- SabreTools.RedumpLib/Attributes/AttributeHelper.cs | 2 +- SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs | 2 +- SabreTools.RedumpLib/Attributes/LanguageAttribute.cs | 2 +- SabreTools.RedumpLib/Attributes/SystemAttribute.cs | 2 +- SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs | 2 +- SabreTools.RedumpLib/Converters/DiscTypeConverter.cs | 2 +- SabreTools.RedumpLib/Converters/LanguageConverter.cs | 4 ++-- SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs | 4 ++-- SabreTools.RedumpLib/Converters/RegionConverter.cs | 2 +- SabreTools.RedumpLib/Converters/SystemConverter.cs | 2 +- SabreTools.RedumpLib/Converters/YesNoConverter.cs | 2 +- SabreTools.RedumpLib/Data/Constants.cs | 2 +- SabreTools.RedumpLib/ExtensionAttribute.cs | 2 +- SabreTools.RedumpLib/Web/CookieWebClient.cs | 2 +- SabreTools.RedumpLib/Web/DelayHelper.cs | 2 +- SabreTools.RedumpLib/Web/Discs.cs | 2 +- SabreTools.RedumpLib/Web/Packs.cs | 2 +- SabreTools.RedumpLib/Web/RedumpClient.cs | 2 +- SabreTools.RedumpLib/Web/Search.cs | 2 +- SabreTools.RedumpLib/Web/User.cs | 4 ++-- SabreTools.RedumpLib/Web/WIP.cs | 2 +- 21 files changed, 24 insertions(+), 24 deletions(-) diff --git a/SabreTools.RedumpLib/Attributes/AttributeHelper.cs b/SabreTools.RedumpLib/Attributes/AttributeHelper.cs index a8a16b4..68916f8 100644 --- a/SabreTools.RedumpLib/Attributes/AttributeHelper.cs +++ b/SabreTools.RedumpLib/Attributes/AttributeHelper.cs @@ -44,4 +44,4 @@ namespace SabreTools.RedumpLib.Attributes return attributes[0] as HumanReadableAttribute; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs b/SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs index bd69d03..d9e360f 100644 --- a/SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs +++ b/SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs @@ -22,4 +22,4 @@ namespace SabreTools.RedumpLib.Attributes /// public string? ShortName { get; set; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Attributes/LanguageAttribute.cs b/SabreTools.RedumpLib/Attributes/LanguageAttribute.cs index 8a2550a..a603653 100644 --- a/SabreTools.RedumpLib/Attributes/LanguageAttribute.cs +++ b/SabreTools.RedumpLib/Attributes/LanguageAttribute.cs @@ -23,4 +23,4 @@ namespace SabreTools.RedumpLib.Attributes /// public string? ThreeLetterCodeAlt { get; set; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Attributes/SystemAttribute.cs b/SabreTools.RedumpLib/Attributes/SystemAttribute.cs index deaafed..23e9dd9 100644 --- a/SabreTools.RedumpLib/Attributes/SystemAttribute.cs +++ b/SabreTools.RedumpLib/Attributes/SystemAttribute.cs @@ -52,4 +52,4 @@ namespace SabreTools.RedumpLib.Attributes /// public bool HasSbi { get; set; } = false; } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs b/SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs index 0b1075f..33cf8f2 100644 --- a/SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs +++ b/SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs @@ -33,4 +33,4 @@ namespace SabreTools.RedumpLib.Converters t.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/DiscTypeConverter.cs b/SabreTools.RedumpLib/Converters/DiscTypeConverter.cs index ca9cf37..1bed2c3 100644 --- a/SabreTools.RedumpLib/Converters/DiscTypeConverter.cs +++ b/SabreTools.RedumpLib/Converters/DiscTypeConverter.cs @@ -33,4 +33,4 @@ namespace SabreTools.RedumpLib.Converters t.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/LanguageConverter.cs b/SabreTools.RedumpLib/Converters/LanguageConverter.cs index a9e8f37..afbf9ee 100644 --- a/SabreTools.RedumpLib/Converters/LanguageConverter.cs +++ b/SabreTools.RedumpLib/Converters/LanguageConverter.cs @@ -18,7 +18,7 @@ namespace SabreTools.RedumpLib.Converters // If we have a value already, don't overwrite it if (hasExistingValue) return existingValue ?? []; - + // Get the current depth for checking int currentDepth = reader.Depth; @@ -53,4 +53,4 @@ namespace SabreTools.RedumpLib.Converters array.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs b/SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs index 5a748de..8d1b6f3 100644 --- a/SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs +++ b/SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs @@ -18,7 +18,7 @@ namespace SabreTools.RedumpLib.Converters // If we have a value already, don't overwrite it if (hasExistingValue) return existingValue ?? []; - + // Get the current depth for checking int currentDepth = reader.Depth; @@ -53,4 +53,4 @@ namespace SabreTools.RedumpLib.Converters array.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/RegionConverter.cs b/SabreTools.RedumpLib/Converters/RegionConverter.cs index 86ad33e..1bacdc1 100644 --- a/SabreTools.RedumpLib/Converters/RegionConverter.cs +++ b/SabreTools.RedumpLib/Converters/RegionConverter.cs @@ -33,4 +33,4 @@ namespace SabreTools.RedumpLib.Converters t.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/SystemConverter.cs b/SabreTools.RedumpLib/Converters/SystemConverter.cs index 862777e..fdb2789 100644 --- a/SabreTools.RedumpLib/Converters/SystemConverter.cs +++ b/SabreTools.RedumpLib/Converters/SystemConverter.cs @@ -33,4 +33,4 @@ namespace SabreTools.RedumpLib.Converters t.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Converters/YesNoConverter.cs b/SabreTools.RedumpLib/Converters/YesNoConverter.cs index 00397b2..ab023a0 100644 --- a/SabreTools.RedumpLib/Converters/YesNoConverter.cs +++ b/SabreTools.RedumpLib/Converters/YesNoConverter.cs @@ -33,4 +33,4 @@ namespace SabreTools.RedumpLib.Converters t.WriteTo(writer); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Data/Constants.cs b/SabreTools.RedumpLib/Data/Constants.cs index 763dee8..d6e9f06 100644 --- a/SabreTools.RedumpLib/Data/Constants.cs +++ b/SabreTools.RedumpLib/Data/Constants.cs @@ -306,4 +306,4 @@ namespace SabreTools.RedumpLib.Data #endregion } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/ExtensionAttribute.cs b/SabreTools.RedumpLib/ExtensionAttribute.cs index f7d035b..b40aaca 100644 --- a/SabreTools.RedumpLib/ExtensionAttribute.cs +++ b/SabreTools.RedumpLib/ExtensionAttribute.cs @@ -6,4 +6,4 @@ namespace System.Runtime.CompilerServices internal sealed class ExtensionAttribute : Attribute {} } -#endif \ No newline at end of file +#endif diff --git a/SabreTools.RedumpLib/Web/CookieWebClient.cs b/SabreTools.RedumpLib/Web/CookieWebClient.cs index 005f3dc..fff7e2c 100644 --- a/SabreTools.RedumpLib/Web/CookieWebClient.cs +++ b/SabreTools.RedumpLib/Web/CookieWebClient.cs @@ -40,4 +40,4 @@ namespace SabreTools.RedumpLib.Web return request; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/DelayHelper.cs b/SabreTools.RedumpLib/Web/DelayHelper.cs index 2c33790..989fd1f 100644 --- a/SabreTools.RedumpLib/Web/DelayHelper.cs +++ b/SabreTools.RedumpLib/Web/DelayHelper.cs @@ -18,4 +18,4 @@ namespace SabreTools.RedumpLib.Web Thread.Sleep(delay * 100); } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/Discs.cs b/SabreTools.RedumpLib/Web/Discs.cs index 6012c19..585d382 100644 --- a/SabreTools.RedumpLib/Web/Discs.cs +++ b/SabreTools.RedumpLib/Web/Discs.cs @@ -62,4 +62,4 @@ namespace SabreTools.RedumpLib.Web return ids; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/Packs.cs b/SabreTools.RedumpLib/Web/Packs.cs index f7fa3db..3ba27b8 100644 --- a/SabreTools.RedumpLib/Web/Packs.cs +++ b/SabreTools.RedumpLib/Web/Packs.cs @@ -68,4 +68,4 @@ namespace SabreTools.RedumpLib.Web return true; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/RedumpClient.cs b/SabreTools.RedumpLib/Web/RedumpClient.cs index df4b087..7bc8fb6 100644 --- a/SabreTools.RedumpLib/Web/RedumpClient.cs +++ b/SabreTools.RedumpLib/Web/RedumpClient.cs @@ -928,4 +928,4 @@ namespace SabreTools.RedumpLib.Web #endregion } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/Search.cs b/SabreTools.RedumpLib/Web/Search.cs index ee6298c..42b9eb9 100644 --- a/SabreTools.RedumpLib/Web/Search.cs +++ b/SabreTools.RedumpLib/Web/Search.cs @@ -99,4 +99,4 @@ namespace SabreTools.RedumpLib.Web return ids; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/User.cs b/SabreTools.RedumpLib/Web/User.cs index ea70e26..8548645 100644 --- a/SabreTools.RedumpLib/Web/User.cs +++ b/SabreTools.RedumpLib/Web/User.cs @@ -69,7 +69,7 @@ namespace SabreTools.RedumpLib.Web return ids; } - + /// /// List the disc IDs associated with the given user /// @@ -107,4 +107,4 @@ namespace SabreTools.RedumpLib.Web return ids; } } -} \ No newline at end of file +} diff --git a/SabreTools.RedumpLib/Web/WIP.cs b/SabreTools.RedumpLib/Web/WIP.cs index 272c403..f95d48b 100644 --- a/SabreTools.RedumpLib/Web/WIP.cs +++ b/SabreTools.RedumpLib/Web/WIP.cs @@ -49,4 +49,4 @@ namespace SabreTools.RedumpLib.Web return ids; } } -} \ No newline at end of file +}