Skip to content

Commit

Permalink
Fix bad each_value autocorrection made by rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycole committed Nov 1, 2024
1 parent 951b1cd commit ebb904f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/innodb/space.rb
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def each_inode_list
def each_inode(&block)
return enum_for(:each_inode) unless block_given?

each_inode_list.each_value do |list|
each_inode_list do |_name, list|
list.each do |page|
page.each_allocated_inode(&block)
end
Expand Down

0 comments on commit ebb904f

Please sign in to comment.