From 40c64a51d5ad06f91da1a5cb3583ca185207c278 Mon Sep 17 00:00:00 2001
From: Conner Turnbull <133619638+cturnbull-bitwarden@users.noreply.github.com>
Date: Mon, 9 Feb 2026 15:10:44 -0500
Subject: [PATCH] Remove stale 'use-pricing-service' feature flag references
from IPricingClient docs (#6961)
---
src/Core/Billing/Pricing/IPricingClient.cs | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/src/Core/Billing/Pricing/IPricingClient.cs b/src/Core/Billing/Pricing/IPricingClient.cs
index 18588ae432..755a121832 100644
--- a/src/Core/Billing/Pricing/IPricingClient.cs
+++ b/src/Core/Billing/Pricing/IPricingClient.cs
@@ -1,7 +1,6 @@
using Bit.Core.Billing.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.StaticStore;
-using Bit.Core.Utilities;
namespace Bit.Core.Billing.Pricing;
@@ -12,8 +11,7 @@ public interface IPricingClient
{
// TODO: Rename with Organization focus.
///
- /// Retrieve a Bitwarden plan by its . If the feature flag 'use-pricing-service' is enabled,
- /// this will trigger a request to the Bitwarden Pricing Service. Otherwise, it will use the existing .
+ /// Retrieve a Bitwarden plan by its from the Bitwarden Pricing Service.
///
/// The type of plan to retrieve.
/// A Bitwarden record or null in the case the plan could not be found or the method was executed from a self-hosted instance.
@@ -22,8 +20,7 @@ public interface IPricingClient
// TODO: Rename with Organization focus.
///
- /// Retrieve a Bitwarden plan by its . If the feature flag 'use-pricing-service' is enabled,
- /// this will trigger a request to the Bitwarden Pricing Service. Otherwise, it will use the existing .
+ /// Retrieve a Bitwarden plan by its from the Bitwarden Pricing Service.
///
/// The type of plan to retrieve.
/// A Bitwarden record.
@@ -33,8 +30,7 @@ public interface IPricingClient
// TODO: Rename with Organization focus.
///
- /// Retrieve all the Bitwarden plans. If the feature flag 'use-pricing-service' is enabled,
- /// this will trigger a request to the Bitwarden Pricing Service. Otherwise, it will use the existing .
+ /// Retrieve all Bitwarden plans from the Pricing Service.
///
/// A list of Bitwarden records or an empty list in the case the method is executed from a self-hosted instance.
/// Thrown when the request to the Pricing Service fails unexpectedly.