@@ -50,52 +50,52 @@ public AliasMethod(RubyModule implementationClass, DynamicMethod oldMethod, Stri
50
50
}
51
51
52
52
@ Override
53
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name ) {
53
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused ) {
54
54
return oldMethod .call (context , self , klazz , name );
55
55
}
56
56
57
57
@ Override
58
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject arg ) {
58
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject arg ) {
59
59
return oldMethod .call (context , self , klazz , name , arg );
60
60
}
61
61
62
62
@ Override
63
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject arg1 , IRubyObject arg2 ) {
63
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject arg1 , IRubyObject arg2 ) {
64
64
return oldMethod .call (context , self , klazz , name , arg1 , arg2 );
65
65
}
66
66
67
67
@ Override
68
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject arg1 , IRubyObject arg2 , IRubyObject arg3 ) {
68
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject arg1 , IRubyObject arg2 , IRubyObject arg3 ) {
69
69
return oldMethod .call (context , self , klazz , name , arg1 , arg2 , arg3 );
70
70
}
71
71
72
72
@ Override
73
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject [] args ) {
73
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject [] args ) {
74
74
return oldMethod .call (context , self , klazz , name , args );
75
75
}
76
76
77
77
@ Override
78
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , Block block ) {
78
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , Block block ) {
79
79
return oldMethod .call (context , self , klazz , name , block );
80
80
}
81
81
82
82
@ Override
83
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject arg1 , Block block ) {
83
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject arg1 , Block block ) {
84
84
return oldMethod .call (context , self , klazz , name , arg1 , block );
85
85
}
86
86
87
87
@ Override
88
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject arg1 , IRubyObject arg2 , Block block ) {
88
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject arg1 , IRubyObject arg2 , Block block ) {
89
89
return oldMethod .call (context , self , klazz , name , arg1 , arg2 , block );
90
90
}
91
91
92
92
@ Override
93
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject arg1 , IRubyObject arg2 , IRubyObject arg3 , Block block ) {
93
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject arg1 , IRubyObject arg2 , IRubyObject arg3 , Block block ) {
94
94
return oldMethod .call (context , self , klazz , name , arg1 , arg2 , arg3 , block );
95
95
}
96
96
97
97
@ Override
98
- public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String name , IRubyObject [] args , Block block ) {
98
+ public IRubyObject call (ThreadContext context , IRubyObject self , RubyModule klazz , String unused , IRubyObject [] args , Block block ) {
99
99
return oldMethod .call (context , self , klazz , name , args , block );
100
100
}
101
101
0 commit comments