Skip to content

Commit

Permalink
Remove the experimental tag from tax classes documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyadsl committed Sep 26, 2019
1 parent efe804d commit 486db3a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions core/app/models/spree/tax_calculator/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ module TaxCalculator
# The class used for tax calculation is configurable, so that the
# calculation can easily be pushed to third-party services. Users looking
# to provide their own calculator should adhere to the API of this class.
#
# @api experimental
# @note This API is currently in development and likely to change.
# Specifically, the input format is not yet finalized.
class Default
include Spree::Tax::TaxHelpers

Expand Down
3 changes: 0 additions & 3 deletions core/app/models/spree/tax_calculator/shipping_rate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ module TaxCalculator
# class.
#
# @see Spree::Tax::ShippingRateTaxer
# @api experimental
# @note This API is currently in development and likely to change.
# Specifically, the input format is not yet finalized.
class ShippingRate
include Spree::Tax::TaxHelpers

Expand Down
3 changes: 0 additions & 3 deletions core/lib/spree/app_configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ def default_pricing_options
# @!attribute [rw] shipping_rate_tax_calculator_class
# @return [Class] a class with the same public interfaces as
# Spree::TaxCalculator::ShippingRate
# @api experimental
class_name_attribute :shipping_rate_tax_calculator_class, default: 'Spree::TaxCalculator::ShippingRate'

# Allows providing your own Mailer for order mailer.
Expand Down Expand Up @@ -384,15 +383,13 @@ def payment_canceller
# @!attribute [rw] tax_adjuster_class
# @return [Class] a class with the same public interfaces as
# Spree::Tax::OrderAdjuster
# @api experimental
class_name_attribute :tax_adjuster_class, default: 'Spree::Tax::OrderAdjuster'

# Allows providing your own class for calculating taxes on an order.
#
# @!attribute [rw] tax_calculator_class
# @return [Class] a class with the same public interfaces as
# Spree::TaxCalculator::Default
# @api experimental
class_name_attribute :tax_calculator_class, default: 'Spree::TaxCalculator::Default'

# Allows providing your own class for choosing which store to use.
Expand Down

0 comments on commit 486db3a

Please sign in to comment.