Use generic argument forwarding (...) and remove ruby2_keywords as it is not needed.
This makes it much faster as it does not need to allocate.
This is also a step forward complete removal of ruby2_keywords.
Additional Notes
Can't do the same for the adapter method as it throws a syntax error with ruby 3.0.0.
Description
Use generic argument forwarding (...) and remove
ruby2_keywords
as it is not needed. This makes it much faster as it does not need to allocate. This is also a step forward complete removal ofruby2_keywords
.Additional Notes
Can't do the same for the
adapter
method as it throws a syntax error with ruby 3.0.0.