Skip to content

Commit

Permalink
rubocop: remove redundant ::
Browse files Browse the repository at this point in the history
satisfy RuboCop
  • Loading branch information
fallwith committed Feb 27, 2024
1 parent 0a9865f commit a1eee25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/new_relic/agent/instrumentation/concurrent_ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
named :'concurrent_ruby'

depends_on do
defined?(::Concurrent) &&
defined?(::Concurrent::VERSION) &&
Gem::Version.new(::Concurrent::VERSION) >= Gem::Version.new('1.1.5')
defined?(Concurrent) &&
defined?(Concurrent::VERSION) &&
Gem::Version.new(Concurrent::VERSION) >= Gem::Version.new('1.1.5')
end

executes do
Expand Down

0 comments on commit a1eee25

Please sign in to comment.