Skip to content

Commit

Permalink
Drop unused argument
Browse files Browse the repository at this point in the history
That's for another refactor, but we can drop it now.
  • Loading branch information
xymbol committed Nov 11, 2023
1 parent 75aa8a6 commit e50455b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/inline_svg/static_asset_finder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class StaticAssetFinder
class Asset
attr_reader :filename

def initialize(filename, _asset_finder)
def initialize(filename)
@filename = filename
end

Expand All @@ -32,7 +32,7 @@ class << self
end

def find_asset(filename)
Asset.new(filename, self)
Asset.new(filename)
end

def match?
Expand Down

0 comments on commit e50455b

Please sign in to comment.