Skip to content

Commit

Permalink
remove unused PurchaseState
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed Feb 14, 2022
1 parent a58e0a7 commit a2b3d56
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions src/Plugin.InAppBilling/Shared/PurchaseState.shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@ public enum PurchaseState
/// <summary>
/// Purchased and in good standing
/// </summary>
Purchased = 0,
Purchased,
/// <summary>
/// Purchase was canceled
/// </summary>
Canceled = 1,
/// <summary>
/// Purchase was refunded
/// </summary>
Refunded = 2,
Canceled,
/// <summary>
/// In the process of being processed
/// </summary>
Expand All @@ -36,19 +32,10 @@ public enum PurchaseState
/// </summary>
Deferred,
/// <summary>
/// In free trial
/// </summary>
FreeTrial,
/// <summary>
/// Pending Purchase
/// </summary>
PaymentPending,
/// <summary>
///
/// </summary>
[Obsolete("Please use PaymentPending")]
Pending,
/// <summary>
/// Purchase state unknown
/// </summary>
Unknown
Expand Down

0 comments on commit a2b3d56

Please sign in to comment.