Skip to content

Commit

Permalink
- Clean up bad docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 committed Nov 18, 2024
1 parent 940c26b commit bd58785
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions EasyPost/Parameters/Tracker/CreateList.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
Expand All @@ -6,9 +7,10 @@
namespace EasyPost.Parameters.Tracker
{
/// <summary>
/// Parameters for <see cref="EasyPost.Services.TrackerService.CreateList(CreateList, System.Threading.CancellationToken)"/> API calls.
/// This parameter set is no longer used.
/// </summary>
[ExcludeFromCodeCoverage]
[Obsolete("This parameter set is no longer used.")]
public class CreateList : BaseParameters<Models.API.Tracker>, ITrackerParameter
{
#region Request Parameters
Expand Down Expand Up @@ -67,8 +69,9 @@ public override Dictionary<string, object> ToDictionary()
}

/// <summary>
/// Internal class used to construct a <see cref="CreateList"/> parameter set.
/// This class is no longer used.
/// </summary>
[Obsolete("This class is no longer used.")]
internal sealed class CreateListTracker
{
/// <summary>
Expand Down

0 comments on commit bd58785

Please sign in to comment.