Skip to content

Commit

Permalink
refactor: remove obsolete ShopifyService.PrepareRequest method
Browse files Browse the repository at this point in the history
BREAKING CHANGE: this method was used by anyone with a custom ShopifySharp service who needed to override the request uri.
  • Loading branch information
nozzlegear committed Jul 3, 2024
1 parent 49074b3 commit 4abeddc
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions ShopifySharp/Services/ShopifyService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,6 @@ protected virtual RequestUri BuildRequestUri(string path)
return new RequestUri(ub.Uri);
}

[Obsolete("This method is deprecated and has been replaced by BuildAdminRequestUri(string, bool).")]
protected RequestUri PrepareRequest(string path) =>
BuildRequestUri(path);

/// <summary>
/// Prepares a request to the path and appends the shop's access token header if applicable.
/// </summary>
Expand Down

0 comments on commit 4abeddc

Please sign in to comment.