|
95 | 95 | import org.truffleruby.language.arguments.ArgumentsDescriptor;
|
96 | 96 | import org.truffleruby.language.arguments.NoKeywordArgumentsDescriptor;
|
97 | 97 | import org.truffleruby.language.arguments.KeywordArgumentsDescriptor;
|
98 |
| -import org.truffleruby.language.arguments.KeywordArgumentsDescriptorManager; |
99 | 98 | import org.truffleruby.language.arguments.RubyArguments;
|
100 | 99 | import org.truffleruby.language.backtrace.Backtrace;
|
101 | 100 | import org.truffleruby.language.constants.GetConstantNode;
|
@@ -396,7 +395,7 @@ Object sendWithoutCExtLock(VirtualFrame frame, Object receiver, RubySymbol metho
|
396 | 395 | dispatchNode, PRIVATE, ownedProfile);
|
397 | 396 | } else {
|
398 | 397 | return sendWithoutCExtLock(frame, receiver, method, block,
|
399 |
| - KeywordArgumentsDescriptorManager.EMPTY, args, |
| 398 | + KeywordArgumentsDescriptor.EMPTY, args, |
400 | 399 | dispatchNode, PRIVATE, ownedProfile);
|
401 | 400 | }
|
402 | 401 | }
|
@@ -434,7 +433,7 @@ Object sendWithoutCExtLock(VirtualFrame frame, Object receiver, RubySymbol metho
|
434 | 433 | dispatchNode, PUBLIC, ownedProfile);
|
435 | 434 | } else {
|
436 | 435 | return sendWithoutCExtLock(frame, receiver, method, block,
|
437 |
| - KeywordArgumentsDescriptorManager.EMPTY, args, |
| 436 | + KeywordArgumentsDescriptor.EMPTY, args, |
438 | 437 | dispatchNode, PUBLIC, ownedProfile);
|
439 | 438 | }
|
440 | 439 | }
|
|
0 commit comments