Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Use each_key instead of keys.each
Browse files Browse the repository at this point in the history
  • Loading branch information
floriandejonckheere committed Mar 31, 2024
1 parent 427c49d commit e39cd90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mosaik/extractors/evolution.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def call

info "Constructing contributor coupling graph..."

contributors.keys.each do |(a, b)|
contributors.each_key do |(a, b)|
next if a == b || contributors[a].empty? || contributors[b].empty?

graph.find_or_add_vertex(a)
Expand Down

0 comments on commit e39cd90

Please sign in to comment.