2
0

Drop support for ruby 3.1 (#32363)

This commit is contained in:
Matt Jankowski
2024-10-31 11:12:08 -04:00
committed by GitHub
parent a20ac20302
commit b231c3c1bf
18 changed files with 38 additions and 43 deletions

View File

@@ -20,9 +20,9 @@ class ActivityPub::Activity
end
class << self
def factory(json, account, **options)
def factory(json, account, **)
@json = json
klass&.new(json, account, **options)
klass&.new(json, account, **)
end
private