From 406b8211f554bfa68058632f849690395c18fe82 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Tue, 3 Sep 2024 04:03:25 -0400 Subject: [PATCH] Remove unused `Mention#active?` method (#31697) --- app/models/mention.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/models/mention.rb b/app/models/mention.rb index af9bb7378b..a508ed630e 100644 --- a/app/models/mention.rb +++ b/app/models/mention.rb @@ -29,8 +29,4 @@ class Mention < ApplicationRecord to: :account, prefix: true ) - - def active? - !silent? - end end