diff --git a/src/_common/Generics/Transforms.cs b/src/_common/Generics/Transforms.cs index 2e7385dc9..6ecf5ad65 100644 --- a/src/_common/Generics/Transforms.cs +++ b/src/_common/Generics/Transforms.cs @@ -4,7 +4,7 @@ namespace Skender.Stock.Indicators; // GENERIC TRANSFORMS -public static class Transforms +internal static class Transforms { // TO COLLECTION internal static Collection ToCollection(this IEnumerable source) diff --git a/src/_common/ObsoleteV2.cs b/src/_common/ObsoleteV2.cs index 15a6dca2f..2c2d4bd74 100644 --- a/src/_common/ObsoleteV2.cs +++ b/src/_common/ObsoleteV2.cs @@ -10,7 +10,7 @@ public static partial class Indicator // 2.4.1 [ExcludeFromCodeCoverage] - [Obsolete("Rename 'ToBasicTuple(..)' to 'ToTuple(..)' to fix.", false)] + [Obsolete("'ToBasicTuple(..)' was deprecated.", false)] public static List<(DateTime, double)> ToBasicTuple( this IEnumerable quotes, CandlePart candlePart)