Skip to content

Commit

Permalink
Code cleanup for quarterly release.
Browse files Browse the repository at this point in the history
  • Loading branch information
David McCarter committed Nov 1, 2023
1 parent fa98e9a commit b46d030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/6/dotNetTips.Spargine.6.Core/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ private static void KillProcess(string processName)
/// Changes the current culture and UI culture.
/// </summary>
/// <param name="culture">The culture.</param>
[Information(UnitTestCoverage = 0, Status = Status.New, Documentation = "ADD URL")]
[Information(UnitTestCoverage = 0, Status = Status.Available, Documentation = "https://bit.ly/SpargineJun2021")]
public static void ChangeCulture(CultureInfo culture)
{
CultureInfo.CurrentCulture = culture.ArgumentNotNull();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public static DateTimeOffset NextDayOfWeek(this DateTimeOffset date, DayOfWeek d
/// <param name="input">The input.</param>
/// <param name="time">The time.</param>
/// <returns>DateTime.</returns>
[Information(nameof(Subtract), author: "David McCarter", createdOn: "10/9/2023", UnitTestCoverage = 0, Status = Status.New)]
[Information(nameof(Subtract), author: "David McCarter", createdOn: "10/9/2023", UnitTestCoverage = 0, Status = Status.Available, Documentation = "https://bit.ly/Spargine6BenchmarkTests")]
public static DateTime Subtract(this DateTime input, TimeSpan time) => input.ToUniversalTime().Add(time);

/// <summary>
Expand Down

0 comments on commit b46d030

Please sign in to comment.