diff --git a/core/app/models/spree/promotion.rb b/core/app/models/spree/promotion.rb index 099da4c9535..c2cd8581b31 100644 --- a/core/app/models/spree/promotion.rb +++ b/core/app/models/spree/promotion.rb @@ -82,15 +82,6 @@ def inactive? !active? end - def expired? - Spree::Deprecation.warn <<-WARN.squish, caller - #expired? is deprecated, and will be removed in Solidus 2.0. - Please use #inactive? instead. - WARN - - inactive? - end - def activate(order:, line_item: nil, user: nil, path: nil, promotion_code: nil) return unless self.class.order_activatable?(order)