Skip to content

Commit bc0a691

Browse files
Merge pull request #3137 from projectblacklight/fix-rubocop
Fix rubocop errors
2 parents 4983983 + 247b903 commit bc0a691

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/blacklight.rake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def system_with_error_handling(*args)
2020
end
2121
end
2222

23-
def with_solr(&block) # rubocop:disable Style/ArgumentsForwarding
23+
def with_solr(&block)
2424
# We're being invoked by the app entrypoint script and solr is already up via docker-compose
2525
if ENV['SOLR_ENV'] == 'docker-compose'
2626
yield
@@ -36,7 +36,7 @@ def with_solr(&block) # rubocop:disable Style/ArgumentsForwarding
3636
end
3737
else
3838
SolrWrapper.wrap do |solr|
39-
solr.with_collection(&block) # rubocop:disable Style/ArgumentsForwarding
39+
solr.with_collection(&block)
4040
end
4141
end
4242
end

0 commit comments

Comments
 (0)