-
-
Notifications
You must be signed in to change notification settings - Fork 939
Expand file tree
/
Copy pathacceptable_errors.rb
More file actions
944 lines (944 loc) · 170 KB
/
acceptable_errors.rb
File metadata and controls
944 lines (944 loc) · 170 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
ACCEPTABLE = {
'enum org.jruby.CompatVersion|java.class.removed' => '10.0',
'class org.jruby.ext.tempfile.Tempfile|java.class.removed' => '10.0',
'class org.jruby.ext.tempfile.TempfileLibrary|java.class.removed' => '10.0',
'class org.jruby.internal.runtime.methods.InterpretedIRMetaClassBody|java.class.removed' => '10.0',
'class org.jruby.runtime.ivars.NonvolatileVariableAccessor|java.class.removed' => '10.0',
'class org.jruby.runtime.ivars.SynchronizedVariableAccessor|java.class.removed' => '10.0',
'class org.jruby.util.unsafe.UnsafeHolder|java.class.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArgsFile::each19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArgsFile::each_line19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::aref19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::aref19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::aryDup19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::aset19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::aset19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::collect19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::compact19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::compatc19()|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::concat19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::flatten19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::flatten19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::flatten_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::flatten_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFixnum org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::hash19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::insert19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::insert19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::insert19(org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::map19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::op_times19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::product19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::push_m19(org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::sort19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::sort_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::uniq19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::uniq_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::unshift19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::unshift19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::unshift19(org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::equal_p19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::initialize19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::instance_eval19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::instance_eval19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::instance_eval19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::instance_eval19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::instance_exec19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyBasicObject::instance_variables19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::method19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::method_missing19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::op_equal_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::op_match19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::private_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::protected_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::public_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyBoolean org.jruby.RubyBasicObject::respond_to_p19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyBoolean org.jruby.RubyBasicObject::respond_to_p19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::singleton_method_added19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::singleton_method_removed19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBasicObject::singleton_method_undefined19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::eql_p19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::op_and19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::op_mod19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::op_mul19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::op_or19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::op_pow19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::op_xor19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::quo19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyBignum::remainder19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyClass::initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyClass::initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyComparable::op_equal19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyComplex::polar19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::each19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::each19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyDir::entries19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyDir::entries19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::foreach19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::foreach19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::mkdir19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::open19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyEnumerator::inspect19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyException::to_s19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFile::expand_path19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFile::initialize19(org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFixnum::op_pow_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFloat::op_mod19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFloat::op_pow19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyGlobal.StringOnlyRubyHash::op_aset19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::each19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method void org.jruby.RubyHash::fastASetCheckString19(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method void org.jruby.RubyHash::fastASetSmallCheckString19(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFixnum org.jruby.RubyHash::hash19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::index19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyHash org.jruby.RubyHash::initialize_copy19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::inspect19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyHash org.jruby.RubyHash::merge_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::op_aset19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::op_eql19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyHash org.jruby.RubyHash::replace19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::select19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::to_s19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::chars19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::each_char19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::getc19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::lines19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::pipe19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::pipe19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::pipe19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::read19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::readlines19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyIO::readlines19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyIO::sysopen19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyInteger::chr19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyInteger::chr19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyInteger::round19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyInteger::round19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyBinding org.jruby.RubyKernel::binding19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::caller19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::eval19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::fork19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyKernel::global_variables19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyKernel::instance_variables19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::load19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyKernel::local_variables19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::method19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyKernel::new_float19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::new_integer19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::new_string19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::op_match19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::open19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::private_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::protected_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::public_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::rand19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::rbCatch19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::rbCatch19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::rbThrow19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::rbThrow19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::require19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::respond_to_p19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::respond_to_p19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::send19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyKernel::singleton_methods19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::system19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyMatchData::op_aref19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::acos19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::acosh19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::asin19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::asinh19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::atan19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::atan219(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::atanh_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::cos19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::cosh19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::erf19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::erfc19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::exp19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyMath::frexp19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::ldexp19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::log10_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::log2_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::log_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::sin19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::sinh19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::sqrt19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::tan19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyMath::tanh19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::attr19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyModule::class_variables19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyBoolean org.jruby.RubyModule::const_defined_p19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyModule::constants19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyModule::constants19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyModule::constantsCommon19(org.jruby.runtime.ThreadContext, boolean, boolean)|java.method.removed' => '10.0',
'method boolean org.jruby.RubyModule::fastIsConstantDefined19(java.lang.String)|java.method.removed' => '10.0',
'method boolean org.jruby.RubyModule::fastIsConstantDefined19(java.lang.String, boolean)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::name19()|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyModule::private_instance_methods19(org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyModule::protected_instance_methods19(org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyNumeric::div19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyNumeric::divmod19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyNumeric::modulo19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyNumeric::quo_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFloat org.jruby.RubyNumeric::str2fnum19(org.jruby.Ruby, org.jruby.RubyString, boolean)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyProc::call19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyProc::to_s19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRandom::op_equal_19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRandom::randCommon19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRange::each19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRange::include_p19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRange::step19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRange::step19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRational::op_divmod19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRational::op_idiv19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRational::op_mod19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::eqq19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::initialize_m19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::initialize_m19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::initialize_m19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::inspect19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::match_m19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::match_m19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, boolean, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::op_match19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::op_match219(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::quote19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.util.ByteList org.jruby.RubyRegexp::quote19(org.jruby.util.ByteList, boolean)|java.method.removed' => '10.0',
'method int org.jruby.RubyRegexp::search19(org.jruby.runtime.ThreadContext, org.jruby.RubyString, int, boolean)|java.method.removed' => '10.0',
'method int org.jruby.RubyRegexp::search19(org.jruby.runtime.ThreadContext, org.jruby.RubyString, int, boolean, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyRegexp::union19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::capitalize19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::capitalize_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::casecmp19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::center19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::center19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::chars19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::chop19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::chop_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::concat19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::count19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::count19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::count19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::delete19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::delete19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::delete19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::delete_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::delete_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::delete_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::downcase19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::downcase_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::dump19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::each_byte19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::each_char19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::each_line19(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::each_line19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::gsub19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::gsub19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::gsub_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::gsub_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::hex19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyBoolean org.jruby.RubyString::include_p19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::index19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::index19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::insert19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::inspect19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::inspect19(org.jruby.Ruby, org.jruby.util.ByteList)|java.method.removed' => '10.0',
'method org.jruby.RubySymbol org.jruby.RubyString::intern19()|java.method.removed' => '10.0',
'method org.jruby.RubyFixnum org.jruby.RubyString::length19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::ljust19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::ljust19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::lstrip19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::lstrip_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::makeShared19(org.jruby.Ruby, int, int)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::makeShared19(org.jruby.Ruby, org.jruby.RubyClass, int, int)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::makeSharedString19(org.jruby.Ruby, int, int)|java.method.removed' => '10.0',
'method void org.jruby.RubyString::modify19(int)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::oct19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::op_aref19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::op_aref19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::op_aset19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::op_aset19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::op_equal19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::op_match19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::rindex19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::rindex19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::rjust19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::rjust19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::rstrip19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::rstrip_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::scan19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::slice_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::slice_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyString::split19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyString::split19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyString::split19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, boolean)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyString::split19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyString::split19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.ThreadContext, boolean)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::squeeze19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::squeeze19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::squeeze19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::squeeze_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::squeeze_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::squeeze_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::stringToInum19(int, boolean)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::strip19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::strip_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::sub19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::sub19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::sub_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::sub_bang19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::succ19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::succ_bang19()|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::swapcase19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::swapcase_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::to_f19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::to_i19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::to_i19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::upcase19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::upcase_bang19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::upto19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::upto19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyStruct::members19()|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyStruct::members19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubySymbol::inspect19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubySymbol::to_sym19()|java.method.removed' => '10.0',
'method org.jruby.RubyTime org.jruby.RubyTime::getlocal19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.RubyTime org.jruby.RubyTime::localtime19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyTime::op_minus19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyTime::op_plus19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyTime::to_s19()|java.method.removed' => '10.0',
'method boolean org.jruby.embed.util.SystemPropertyCatcher::isRuby19(java.lang.String)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::add219(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::mult219(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_div19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_div19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_minus19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_mod19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_mul19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_plus19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_quo19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::remainder19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::sub219(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::to_int19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.socket.RubyBasicSocket::do_not_reverse_lookup19(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.socket.RubyBasicSocket::set_do_not_reverse_lookup19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibRubyGzipReader::getc_19()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibRubyGzipReader::initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibRubyGzipReader::open19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibRubyGzipWriter::initialize19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibRubyGzipWriter::open19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.java.proxies.MapJavaProxy::op_aset19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.Helpers::aValueSplat19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.runtime.Helpers::splatValue19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.runtime.Helpers::unsplatValue19(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyInteger org.jruby.util.ConvertBytes::byteListToInum19(org.jruby.Ruby, org.jruby.util.ByteList, int, boolean)|java.method.removed' => '10.0',
'method double org.jruby.util.ConvertDouble::byteListToDouble19(org.jruby.util.ByteList, boolean)|java.method.removed' => '10.0',
'method boolean org.jruby.util.IdUtil::isNameCharacter19(char)|java.method.removed' => '10.0',
'method boolean org.jruby.util.IdUtil::isNameString19(java.lang.String, int, int)|java.method.removed' => '10.0',
'method boolean org.jruby.util.IdUtil::isValidConstantName19(java.lang.String)|java.method.removed' => '10.0',
'method int org.jruby.util.StringSupport::choppedLength19(org.jruby.util.CodeRangeable, org.jruby.Ruby)|java.method.removed' => '10.0',
'method int org.jruby.util.StringSupport::countCommon19(org.jruby.util.ByteList, org.jruby.Ruby, boolean[], org.jruby.util.StringSupport.TrTables, org.jcodings.Encoding)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.TypeConverter::convertToType19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.JavaSites.CheckedSites)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.TypeConverter::convertToType19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.JavaSites.CheckedSites, boolean)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.TypeConverter::convertToType19(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, java.lang.String)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.TypeConverter::convertToType19(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, java.lang.String, boolean)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.TypeConverter::convertToTypeWithCheck19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, org.jruby.runtime.JavaSites.CheckedSites)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.TypeConverter::convertToTypeWithCheck19(org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyClass, java.lang.String)|java.method.removed' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyCheck|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyDefRed|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyDgoto|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyGindex|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyLen|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyLhs|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyRindex|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yySindex|java.field.typeChanged' => '10.0',
'field org.jruby.ext.ripper.RipperParser.yyTable|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyCheck|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyDefRed|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyDgoto|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyGindex|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyLen|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyLhs|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyRindex|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yySindex|java.field.typeChanged' => '10.0',
'field org.jruby.parser.RubyParser.yyTable|java.field.typeChanged' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isARG()|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isAfterOperator()|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isBEG()|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isEND()|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isLabelPossible(boolean)|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isLabelSuffix()|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isLexState(int, int)|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isLexStateAll(int, int)|java.method.removed' => '10.0',
'method boolean org.jruby.lexer.LexingCommon::isSpaceArg(int, boolean)|java.method.removed' => '10.0',
'method void org.jruby.parser.RubyParserBase::backrefAssignError(org.jruby.ast.Node)|java.method.removed' => '10.0',
'method boolean org.jruby.parser.RubyParserBase::isFrozenStringLiteral()|java.method.removed' => '10.0',
'method void org.jruby.parser.RubyParserBase::setFrozenStringLiteral(boolean)|java.method.removed' => '10.0',
'method void org.jruby.parser.RubyParserBase::warn_experimental(int, java.lang.String)|java.method.removed' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::cond_ne(org.jruby.ir.operands.Label, org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand)|java.method.removed' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::cond_ne(org.jruby.ir.operands.Label, org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand, org.jruby.ir.builder.IRBuilder.RunIt)|java.method.removed' => '10.0',
'method org.jruby.ir.instructions.Instr org.jruby.ir.instructions.BFalseInstr::simplifyBranch(org.jruby.ir.interpreter.FullInterpreterContext)|java.method.removed' => '10.0',
'method org.jruby.ir.instructions.Instr org.jruby.ir.instructions.BNEInstr::simplifyBranch(org.jruby.ir.interpreter.FullInterpreterContext)|java.method.removed' => '10.0',
'method org.jruby.ir.instructions.Instr org.jruby.ir.instructions.BNilInstr::simplifyBranch(org.jruby.ir.interpreter.FullInterpreterContext)|java.method.removed' => '10.0',
'method org.jruby.ir.instructions.Instr org.jruby.ir.instructions.BTrueInstr::simplifyBranch(org.jruby.ir.interpreter.FullInterpreterContext)|java.method.removed' => '10.0',
'method org.jruby.ir.instructions.Instr org.jruby.ir.instructions.BUndefInstr::simplifyBranch(org.jruby.ir.interpreter.FullInterpreterContext)|java.method.removed' => '10.0',
'method org.jruby.ir.instructions.Instr org.jruby.ir.instructions.BranchInstr::simplifyBranch(org.jruby.ir.interpreter.FullInterpreterContext)|java.method.removed' => '10.0',
'method org.jruby.ir.operands.Operand org.jruby.ir.instructions.CopyInstr::simplifyAndGetResult(org.jruby.ir.IRScope, java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>)|java.method.removed' => '10.0',
'method org.jruby.ir.operands.Operand org.jruby.ir.instructions.Instr::simplifyAndGetResult(org.jruby.ir.IRScope, java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>)|java.method.removed' => '10.0',
'method org.jruby.ir.operands.Operand org.jruby.ir.instructions.ReqdArgMultipleAsgnInstr::simplifyAndGetResult(org.jruby.ir.IRScope, java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>)|java.method.removed' => '10.0',
'method org.jruby.ir.operands.Operand org.jruby.ir.instructions.ToAryInstr::simplifyAndGetResult(org.jruby.ir.IRScope, java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>)|java.method.removed' => '10.0',
'method void org.jruby.ir.representations.CFG::resetState()|java.method.removed' => '10.0',
'method boolean org.jruby.ast.DStrNode::isFrozen()|java.method.removed' => '10.0',
'method void org.jruby.ast.DStrNode::setFrozen(boolean)|java.method.removed' => '10.0',
'method <T extends org.jruby.ast.Node> T org.jruby.ast.Node::findFirstChild(java.lang.Class<T>)|java.method.removed' => '10.0',
'method boolean org.jruby.ast.StrNode::isFrozen()|java.method.removed' => '10.0',
'method void org.jruby.ast.StrNode::setFrozen(boolean)|java.method.removed' => '10.0',
'method org.jruby.CompatVersion org.jruby.embed.EmbedRubyInstanceConfigAdapter::getCompatVersion()|java.method.removed' => '10.0',
'method void org.jruby.embed.EmbedRubyInstanceConfigAdapter::setCompatVersion(org.jruby.CompatVersion)|java.method.removed' => '10.0',
'method org.jruby.CompatVersion org.jruby.embed.ScriptingContainer::getCompatVersion()|java.method.removed' => '10.0',
'method void org.jruby.embed.ScriptingContainer::setCompatVersion(org.jruby.CompatVersion)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyBasicObject::createBasicObjectClass(org.jruby.Ruby, org.jruby.RubyClass)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyBignum::createBignumClass(org.jruby.Ruby)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyBoolean::createFalseClass(org.jruby.Ruby)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyBoolean::createTrueClass(org.jruby.Ruby)|java.method.removed' => '10.0',
'method void org.jruby.RubyClass::createClassClass(org.jruby.Ruby, org.jruby.RubyClass)|java.method.removed' => '10.0',
'method org.jruby.RubyModule org.jruby.RubyKernel::createKernelModule(org.jruby.Ruby)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyModule::createModuleClass(org.jruby.Ruby, org.jruby.RubyClass)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyModule::createRefinementClass(org.jruby.Ruby, org.jruby.RubyClass)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyNil::createNilClass(org.jruby.Ruby)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyObject::createObjectClass(org.jruby.Ruby, org.jruby.RubyClass)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.TopSelfFactory::createTopSelf(org.jruby.Ruby, boolean)|java.method.removed' => '10.0',
'parameter void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::<init>(org.jruby.ir.IRManager, org.jruby.ir.IRScope, ===org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>===, org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>, org.jcodings.Encoding)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::<init>(org.jruby.ir.IRManager, org.jruby.ir.IRScope, org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>, ===org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>===, org.jcodings.Encoding)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.ir.dataflow.FlowGraphNode<T extends org.jruby.ir.dataflow.DataFlowProblem<T, U>, U extends org.jruby.ir.dataflow.FlowGraphNode<T, U>>::compute_MEET(===org.jruby.dirgra.Edge<org.jruby.ir.representations.BasicBlock, org.jruby.ir.representations.CFG.EdgeType>===, U)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.DataIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(===org.jruby.dirgra.Edge<T, U>[]===, int, java.lang.Object, boolean, boolean)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.DataIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(===org.jruby.dirgra.Edge<T, U>[]===, int, java.lang.Object, boolean, boolean)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::addEdge(===org.jruby.dirgra.Edge<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::addEdge(T, T, ===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::edgesOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter org.jruby.dirgra.Edge<T, U>[] org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::growEdges(===org.jruby.dirgra.Edge<T, U>[]===, int)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::removeEdge(===org.jruby.dirgra.Edge<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(===org.jruby.dirgra.Vertex<T, U>===, org.jruby.dirgra.Vertex<T, U>, U)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(org.jruby.dirgra.Vertex<T, U>, ===org.jruby.dirgra.Vertex<T, U>===, U)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(org.jruby.dirgra.Vertex<T, U>, org.jruby.dirgra.Vertex<T, U>, ===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(===org.jruby.dirgra.Edge<T, U>[]===, int, U)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(org.jruby.dirgra.Edge<T, U>[], int, ===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(===org.jruby.dirgra.Edge<T, U>[]===, int, U, boolean)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(org.jruby.dirgra.Edge<T, U>[], int, ===U===, boolean)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void java.lang.Iterable<T>::forEach(===java.util.function.Consumer<? super T>===) @ org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.EdgeTypeIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>::<init>(===org.jruby.dirgra.Edge<T, U>[]===, int, java.lang.Object, boolean)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void java.util.Iterator<E>::forEachRemaining(===java.util.function.Consumer<? super E>===) @ org.jruby.dirgra.EdgeTypeIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::addEdgeTo(T, ===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::addEdgeTo(org.jruby.dirgra.Vertex, ===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::addIncomingEdge(===org.jruby.dirgra.Edge<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::addOutgoingEdge(===org.jruby.dirgra.Edge<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter int org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::compareTo(===org.jruby.dirgra.Vertex<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdgeOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdgesNotOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdgesOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter T org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingSourceDataOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<T> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingSourcesDataNotOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<T> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingSourcesDataOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter T org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingDestinationDataOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdgeOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdgesNotOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdgesOfType(===U===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::removeIncomingEdge(===org.jruby.dirgra.Edge<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'parameter void org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::removeOutgoingEdge(===org.jruby.dirgra.Edge<T, U>===)|java.method.parameterTypeParameterChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ripper.RubyRipper::initRipper(org.jruby.runtime.ThreadContext)|java.method.returnTypeChanged' => '10.0',
'method int[] org.jruby.ext.ripper.YyTables::yyCheck()|java.method.returnTypeChanged' => '10.0',
'method int[] org.jruby.ext.ripper.YyTables::yyTable()|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildIterInner(org.jruby.RubySymbol, U, U, int)|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildLambdaInner(U, U)|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildModuleOrClassBody(U, int, int)|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildPatternLocal(org.jruby.ir.operands.Operand, org.jruby.RubySymbol, int, int, boolean)|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::defineMethodInner(org.jruby.ir.builder.LazyMethodDefinition<U, V, W, X, Y, Z>, org.jruby.ir.IRScope, int)|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildIterInner(org.jruby.RubySymbol, U, U, int) @ org.jruby.ir.builder.IRBuilderAST|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildLambdaInner(U, U) @ org.jruby.ir.builder.IRBuilderAST|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::buildModuleOrClassBody(U, int, int) @ org.jruby.ir.builder.IRBuilderAST|java.method.returnTypeChanged' => '10.0',
'method org.jruby.ir.passes.LocalOptimizationPass.Result org.jruby.ir.passes.LocalOptimizationPass::runLocalOptsOnBasicBlock(org.jruby.ir.interpreter.FullInterpreterContext, org.jruby.ir.representations.BasicBlock)|java.method.returnTypeChanged' => '10.0',
'method int[] org.jruby.parser.YyTables::yyCheck()|java.method.returnTypeChanged' => '10.0',
'method int[] org.jruby.parser.YyTables::yyTable()|java.method.returnTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.Ruby::defineClass(java.lang.String, org.jruby.RubyClass, org.jruby.runtime.ObjectAllocator)|java.annotation.removed' => '10.0',
'method org.jruby.RubyModule org.jruby.Ruby::defineModule(java.lang.String)|java.annotation.removed' => '10.0',
'method org.jruby.RubyModule org.jruby.Ruby::defineModuleUnder(java.lang.String, org.jruby.RubyModule)|java.annotation.removed' => '10.0',
'method org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::addEdge(org.jruby.dirgra.Edge<T, U>)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Collection<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::edges()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::edgesOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Vertex<T, U> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::findOrCreateVertexFor(T)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Vertex<T, U> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::findVertexFor(T)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U>[] org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::getEdges()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U>[] org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::growEdges(org.jruby.dirgra.Edge<T, U>[], int)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Collection<org.jruby.dirgra.Vertex<T, U>> org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>::vertices()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Vertex<T, U> org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>::getDestination()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Vertex<T, U> org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>::getSource()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method U org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>::getType()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Iterator<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>::iterator()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Spliterator<T> java.lang.Iterable<T>::spliterator() @ org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.EdgeTypeIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>::next()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdge()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdgeOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Collection<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdges()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdgesNotOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getIncomingEdgesOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdge()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.Edge<T, U> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdgeOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Collection<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdges()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdgesNotOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.lang.Iterable<org.jruby.dirgra.Edge<T, U>> org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>::getOutgoingEdgesOfType(U)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.dirgra.DirectedGraph<org.jruby.ir.representations.BasicBlock, org.jruby.ir.representations.CFG.EdgeType> org.jruby.ir.representations.CFG::build(org.jruby.ir.instructions.Instr[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.lang.Iterable<org.jruby.dirgra.Edge<org.jruby.ir.representations.BasicBlock, org.jruby.ir.representations.CFG.EdgeType>> org.jruby.ir.representations.CFG::getIncomingEdges(org.jruby.ir.representations.BasicBlock)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.Collection<org.jruby.dirgra.Edge<org.jruby.ir.representations.BasicBlock, org.jruby.ir.representations.CFG.EdgeType>> org.jruby.ir.representations.CFG::getOutgoingEdges(org.jruby.ir.representations.BasicBlock)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::append(org.jruby.runtime.builtin.IRubyObject)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::makeShared()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, int)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, java.util.Collection<? extends org.jruby.runtime.builtin.IRubyObject>)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, java.util.List<? extends org.jruby.runtime.builtin.IRubyObject>)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.runtime.ThreadContext)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.runtime.ThreadContext, int)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.Ruby)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.Ruby, int)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.Ruby, long)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newEmptyArray(org.jruby.Ruby)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newEmptyArray(org.jruby.Ruby, org.jruby.RubyClass)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::push(org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::push_m(org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyModule::instance_methods(org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyModule::instance_methods19(org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyModule::public_instance_methods(org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyModule::public_instance_methods19(org.jruby.runtime.builtin.IRubyObject[])|java.method.returnTypeTypeParametersChanged' => '10.0',
'method java.util.List<org.jruby.ir.Tuple<org.jruby.ir.representations.BasicBlock, org.jruby.ir.instructions.YieldInstr>> org.jruby.ir.transformations.inlining.InlineCloneInfo::getYieldSites()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.parser.Parser::getLines(boolean, java.lang.String, int)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayOneObject::aryDup()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayOneObject::collectArray(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayOneObject::dupImpl(org.jruby.Ruby, org.jruby.RubyClass)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayOneObject::makeShared()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayOneObject::safeReverse()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayTwoObject::aryDup()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayTwoObject::collectArray(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayTwoObject::dupImpl(org.jruby.Ruby, org.jruby.RubyClass)|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayTwoObject::makeShared()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.specialized.RubyArrayTwoObject::safeReverse()|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::append(org.jruby.runtime.builtin.IRubyObject) @ org.jruby.util.collections.StringArraySet|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::push(org.jruby.runtime.builtin.IRubyObject[]) @ org.jruby.util.collections.StringArraySet|java.method.returnTypeTypeParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyConverter::createConverterClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.Pack::decode(org.jruby.runtime.ThreadContext, java.nio.ByteBuffer, int, org.jruby.RubyArray, org.jruby.runtime.Block, org.jruby.util.Pack.Converter, int)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.NoFunctionalitySignalFacade::ignore(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.NoFunctionalitySignalFacade::restoreOSDefault(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.NoFunctionalitySignalFacade::restorePlatformDefault(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.util.NoFunctionalitySignalFacade::trap(===org.jruby.runtime.ThreadContext===, org.jruby.runtime.BlockCallback, java.lang.String)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.NoFunctionalitySignalFacade::trap(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SignalFacade::ignore(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SignalFacade::restoreOSDefault(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SignalFacade::restorePlatformDefault(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.util.SignalFacade::trap(===org.jruby.runtime.ThreadContext===, org.jruby.runtime.BlockCallback, java.lang.String)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SignalFacade::trap(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SunSignalFacade::ignore(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SunSignalFacade::restoreOSDefault(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SunSignalFacade::restorePlatformDefault(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.util.SunSignalFacade::trap(===org.jruby.runtime.ThreadContext===, org.jruby.runtime.BlockCallback, java.lang.String)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.util.SunSignalFacade::trap(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method int org.jruby.util.io.OpenFile::appendline(org.jruby.runtime.ThreadContext, int, org.jruby.util.ByteList[], int[], org.jcodings.Encoding)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.ext.ffi.DataConverter::createDataConverterModule(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ffi.MappedType::createConverterTypeClass(===org.jruby.runtime.ThreadContext===, org.jruby.RubyClass)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ffi.MappedType::createConverterTypeClass(org.jruby.runtime.ThreadContext, ===org.jruby.RubyClass===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.util.Pack.Converter::decode(===org.jruby.runtime.ThreadContext===, java.nio.ByteBuffer)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.util.Pack.Converter::encode(===org.jruby.runtime.ThreadContext===, org.jruby.runtime.builtin.IRubyObject, org.jruby.util.ByteList)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.runtime.JavaSites.TypeConverterSites org.jruby.util.TypeConverter::sites(org.jruby.runtime.ThreadContext)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.callsite.FunctionalCachingCallSite org.jruby.util.IOChannel::initReadSite(java.lang.String)|java.method.returnTypeChangedCovariantly' => '10.0',
'method org.jruby.runtime.callsite.FunctionalCachingCallSite org.jruby.util.IOChannel::initWriteSite()|java.method.returnTypeChangedCovariantly' => '10.0',
'parameter int org.jruby.util.IOChannel::read(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, ===org.jruby.runtime.callsite.FunctionalCachingCallSite===, java.nio.ByteBuffer) throws java.io.IOException|java.method.parameterTypeChanged' => '10.0',
'parameter int org.jruby.util.IOChannel::write(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, ===org.jruby.runtime.callsite.FunctionalCachingCallSite===, java.nio.ByteBuffer)|java.method.parameterTypeChanged' => '10.0',
'method int org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::checkLength(org.jruby.runtime.ThreadContext, long)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.ThreadContext org.jruby.RubyBasicObject::getCurrentContext()|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method boolean org.jruby.RubyBignum::isZero(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.RubyClass::marshal(java.lang.Object, org.jruby.runtime.marshal.NewMarshal, org.jruby.runtime.ThreadContext, org.jruby.runtime.marshal.NewMarshal.RubyOutputStream)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method boolean org.jruby.RubyFixnum::isZero(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method boolean org.jruby.RubyFloat::isZero(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyMatchData::at(org.jruby.runtime.ThreadContext, int)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method int org.jruby.RubyMatchData::backrefNumber(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.RubyModule::addMethodInternal(org.jruby.runtime.ThreadContext, java.lang.String, org.jruby.internal.runtime.methods.DynamicMethod)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::cloneMethods(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.RubyModule::defineAnnotatedMethod(org.jruby.runtime.ThreadContext, java.lang.String, java.util.List<org.jruby.anno.JavaMethodDescriptor>, org.jruby.runtime.MethodFactory)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.RubyModule::defineAutoload(org.jruby.runtime.ThreadContext, java.lang.String, org.jruby.RubyString)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::finishAutoload(org.jruby.runtime.ThreadContext, java.lang.String)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::getAutoloadConstant(org.jruby.runtime.ThreadContext, java.lang.String)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::getConstantNoConstMissingSkipAutoload(org.jruby.runtime.ThreadContext, java.lang.String)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.RubyModule::setConstantVisibility(org.jruby.runtime.ThreadContext, java.lang.String, boolean)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method java.lang.String org.jruby.RubyModule::validateConstant(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method boolean org.jruby.RubyRational::isZero(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method int org.jruby.RubyRational::signum(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.util.RegexpOptions org.jruby.RubyRegexp::getOptions(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.joni.Regex org.jruby.RubyRegexp::getPattern(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.joni.Regex org.jruby.RubyRegexp::preparePattern(org.jruby.runtime.ThreadContext, org.jruby.RubyString)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.RubyRegexp org.jruby.RubyRegexp::regexpInitialize(org.jruby.util.ByteList, org.jcodings.Encoding, org.jruby.util.RegexpOptions, org.jruby.runtime.builtin.IRubyObject)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::catStringUnsafe(java.lang.String)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::plus_at(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::substr(org.jruby.runtime.ThreadContext, int, int)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::substrEnc(org.jruby.runtime.ThreadContext, int, int)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method boolean org.jruby.ext.bigdecimal.RubyBigDecimal::isZero(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.ext.ffi.Pointer org.jruby.ext.ffi.jffi.CallbackManager::getCallback(org.jruby.runtime.ThreadContext, org.jruby.ext.ffi.CallbackInfo, java.lang.Object)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.ext.ffi.jffi.NativeInvoker org.jruby.ext.ffi.jffi.DefaultMethod::getNativeInvoker(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.ext.set.RubySet::modifyCheck(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.javasupport.JavaPackage::fetchConstant(org.jruby.runtime.ThreadContext, java.lang.String, boolean)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.javasupport.binding.MethodInstaller::defineMethods(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.internal.runtime.methods.DynamicMethod, boolean)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.RubyArray org.jruby.javasupport.proxy.JavaProxyClass::constructors(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.RubyArray org.jruby.javasupport.proxy.JavaProxyConstructor::argument_types(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.RubyArray org.jruby.runtime.ArgumentDescriptor::toArrayForm(org.jruby.runtime.ThreadContext, boolean)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method void org.jruby.runtime.backtrace.BacktraceData::yieldPartialBacktrace(org.jruby.Ruby, java.util.function.Predicate<org.jruby.runtime.backtrace.RubyStackTraceElement>)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.util.ByteList org.jruby.util.ConvertBytes::byteToSharedByteList(short)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.util.ByteList org.jruby.util.ConvertBytes::longToByteListCached(long)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method org.jruby.ast.ArgsNode org.jruby.parser.RubyParserBase::args_with_numbered(org.jruby.ast.ArgsNode, int, org.jruby.ast.Node)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.parser.RubyParserBase::endless_method_name(org.jruby.ast.DefHolder, org.jruby.parser.ProductionState)|java.method.numberOfParametersChanged' => '10.0',
'method boolean org.jruby.parser.RubyParserBase::isEval()|java.method.visibilityIncreased' => '10.0',
'parameter org.jruby.ast.Node org.jruby.parser.RubyParserBase::new_ary_op_assign(org.jruby.ast.Node, ===org.jruby.ast.Node===, org.jruby.util.ByteList, org.jruby.ast.Node)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.ast.Node org.jruby.parser.RubyParserBase::new_ary_op_assign(org.jruby.ast.Node, org.jruby.ast.Node, ===org.jruby.util.ByteList===, org.jruby.ast.Node)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.ast.Node org.jruby.parser.RubyParserBase::new_attr_op_assign(org.jruby.ast.Node, org.jruby.util.ByteList, ===org.jruby.util.ByteList===, org.jruby.util.ByteList, org.jruby.ast.Node)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.ast.Node org.jruby.parser.RubyParserBase::new_attr_op_assign(org.jruby.ast.Node, org.jruby.util.ByteList, org.jruby.util.ByteList, org.jruby.util.ByteList, ===org.jruby.ast.Node===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.ast.Node org.jruby.parser.RubyParserBase::new_const_op_assign(int, org.jruby.ast.Node, org.jruby.util.ByteList, org.jruby.ast.Node, org.jruby.lexer.yacc.LexContext)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.ast.Node org.jruby.parser.RubyParserBase::new_op_assign(org.jruby.ast.AssignableNode, org.jruby.util.ByteList, org.jruby.ast.Node, org.jruby.lexer.yacc.LexContext)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.ast.Node org.jruby.parser.RubyParserBase::node_assign(org.jruby.ast.Node, org.jruby.ast.Node, org.jruby.lexer.yacc.LexContext)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ripper.RipperParserBase::endless_method_name(org.jruby.ast.DefHolder, org.jruby.parser.ProductionState)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ripper.RubyRipper::initRipper(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.runtime.encoding.EncodingService::defineAliases(org.jruby.runtime.ThreadContext)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.runtime.encoding.EncodingService::defineEncodings(org.jruby.runtime.ThreadContext)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::unpack(org.jruby.runtime.ThreadContext)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.specialized.RubyArraySpecialized::unpack(org.jruby.runtime.ThreadContext)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.runtime.backtrace.TraceType::printBacktraceToStream(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyString, boolean, int)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.runtime.backtrace.TraceType::printBacktraceToStream(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyString, int)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyString org.jruby.runtime.backtrace.TraceType::printFullMessage(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.returnTypeChanged' => '10.0',
'method void org.jruby.RubyException::setBacktrace(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'class org.jruby.runtime.backtrace.BacktraceData|java.class.defaultSerializationChanged' => '10.0',
'method void org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::<init>(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject[], int, int)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::insert(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::safeArraySet(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], int, org.jruby.runtime.builtin.IRubyObject)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.RubyClass.RubyClassSet org.jruby.RubyClass::getSubclassesForRead()|java.method.visibilityIncreased' => '10.0',
'method void org.jruby.RubyIO::setPath(java.lang.String) @ org.jruby.RubyFile|java.method.visibilityIncreased' => '10.0',
'method org.jruby.RubyInteger org.jruby.RubyFixnum::negate(org.jruby.runtime.ThreadContext)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyInteger::integer_p(org.jruby.runtime.ThreadContext)|java.method.visibilityIncreased' => '10.0',
'method void org.jruby.RubyModule::<init>(org.jruby.Ruby)|java.method.visibilityIncreased' => '10.0',
'method boolean org.jruby.RubyModule::constDefined(org.jruby.runtime.ThreadContext, java.lang.String)|java.method.visibilityIncreased' => '10.0',
'method java.util.Map<java.lang.String, org.jruby.runtime.callsite.CacheEntry> org.jruby.RubyModule::getCachedMethods()|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyModule::storeConstant(org.jruby.runtime.ThreadContext, java.lang.String, org.jruby.runtime.builtin.IRubyObject)|java.method.visibilityIncreased' => '10.0',
'method java.util.stream.Stream<java.util.Map.Entry<org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject>> org.jruby.RubyObjectSpace.WeakMap::getEntryStream()|java.method.visibilityIncreased' => '10.0',
'method java.util.Map<org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject> org.jruby.RubyObjectSpace.WeakMap::getWeakMapFor(org.jruby.runtime.builtin.IRubyObject)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyNumeric::integer_p(org.jruby.runtime.ThreadContext) @ org.jruby.RubyRational|java.method.visibilityIncreased' => '10.0',
'method org.jruby.RubyString org.jruby.RubyString::strDup(org.jruby.Ruby, org.jruby.RubyClass)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyStruct::members(org.jruby.runtime.ThreadContext)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyTime::initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibDeflate::deflate(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.visibilityIncreased' => '10.0',
'method void org.jruby.ir.operands.FrozenString::<init>(org.jruby.util.ByteList)|java.method.visibilityIncreased' => '10.0',
'method void org.jruby.ir.operands.MutableString::<init>(org.jruby.ir.operands.FrozenString)|java.method.visibilityIncreased' => '10.0',
'method org.jcodings.Encoding org.jruby.ir.targets.indy.StringBootstrap::encodingFromName(java.lang.String)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.RubyModule org.jruby.javasupport.Java::setProxyClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, java.lang.String, java.lang.Class<?>) throws org.jruby.exceptions.NameError|java.method.visibilityIncreased' => '10.0',
'method java.lang.String org.jruby.runtime.profile.builtin.ProfileData::methodName(int)|java.method.visibilityIncreased' => '10.0',
'method org.jruby.RubyClass org.jruby.java.proxies.ArrayJavaProxy::createArrayJavaProxy(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.java.proxies.ArrayJavaProxyCreator::createArrayJavaProxyCreator(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.java.proxies.ConcreteJavaProxy::createConcreteJavaProxy(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.java.proxies.InterfaceJavaProxy::createInterfaceJavaProxy(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.java.proxies.JavaProxy::createJavaProxy(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.java.proxies.MapJavaProxy::createMapJavaProxy(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.javasupport.proxy.JavaProxyClass.ProxyMethodImpl::createJavaProxyMethodClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.javasupport.proxy.JavaProxyClass::createJavaProxyClassClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.proxy.JavaProxyClass::createJavaProxyClasses(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.javasupport.proxy.JavaProxyConstructor::createJavaProxyConstructorClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.proxy.JavaProxyClass::initMethod(org.jruby.runtime.ThreadContext, java.lang.String, java.lang.String, boolean)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.javasupport.proxy.JavaProxyClass org.jruby.javasupport.proxy.JavaProxyClass::setProxyClassReified(===org.jruby.runtime.ThreadContext===, org.jruby.RubyClass, java.lang.Class<? extends org.jruby.javasupport.proxy.ReifiedJavaProxy>, boolean)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.javasupport.proxy.JavaProxyReflectionObject::registerRubyMethods(===org.jruby.runtime.ThreadContext===, org.jruby.RubyClass)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.internal.runtime.methods.CompiledIRMethod|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.internal.runtime.methods.DefineMethodMethod|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.internal.runtime.methods.InterpretedIRBodyMethod|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.internal.runtime.methods.InterpretedIRMethod|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.internal.runtime.methods.MixedModeIRMethod|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.runtime.InterpretedIRBlockBody|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.compiler.Compilable<T>::completeBuild(===T===) @ org.jruby.runtime.MixedModeIRBlockBody|java.method.parameterTypeErasureChanged' => '10.0',
'parameter void org.jruby.parser.YYDebug::reduce(int, int, int, java.lang.String, ===int===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.parser.YYDebug::shift(int, ===int===, int)|java.method.parameterTypeChanged' => '10.0',
'method java.lang.String org.jruby.management.ConfigMBean::getCompatVersion()|java.method.removed' => '10.0',
'parameter org.jruby.RubyClass org.jruby.RubyLocalJumpError::define(===org.jruby.runtime.ThreadContext===, org.jruby.RubyClass)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.RubySystemCallError::define(===org.jruby.runtime.ThreadContext===, org.jruby.RubyClass)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ext.timeout.Timeout::define(org.jruby.RubyModule)|java.method.removed' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaIo::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.javasupport.ext.JavaLang::define(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaLangReflect::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaMath::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaNet::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaNio::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaTime::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.javasupport.ext.JavaUtil::define(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'parameter void org.jruby.javasupport.ext.JavaUtilRegex::define(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.javasupport.ext.Kernel::define(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.ext.Module::define(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.binding.MethodGatherer::installClassMethods(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.binding.MethodGatherer::installConstants(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.binding.MethodGatherer::installInnerClasses(org.jruby.runtime.ThreadContext, java.lang.Class<?>, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.NativeException::createClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyArithmeticSequence::createArithmeticSequenceClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::createArrayClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyBinding::createBindingClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyChain::createChainClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubyClassPathVariable::createClassPathVariable(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.RubyComparable::createComparable(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyComplex::createComplexClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyContinuation::createContinuation(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyDir::createDirClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyEncoding::createEncodingClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.RubyEnumerable::createEnumerableModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyException::createExceptionClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyFile::createFileClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyFileStat::createFileStatClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.RubyFileTest::createFileTestModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyFixnum::createFixnumClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyFloat::createFloatClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.RubyGC::createGCModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyGenerator::createGeneratorClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyHash::createHashClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyIO::createIOClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyIOBuffer::createIOBufferClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyInteger::createIntegerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.RubyMarshal::createMarshalModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyMatchData::createMatchDataClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.RubyMath::createMathModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyMethod::createMethodClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyNumeric::createNumericClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyModule org.jruby.RubyObjectSpace::createObjectSpaceModule(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyProc::createProcClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyModule org.jruby.RubyProcess::createProcessModule(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyProducer::createProducerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyRandom::createRandomClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyRange::createRangeClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyRational::createRationalClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyRegexp::createRegexpClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter void org.jruby.RubySignal::createSignal(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyString::createStringClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyStruct::createStructClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubySymbol::createSymbolClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyThread::createThreadClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyThreadGroup::createThreadGroupClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyTime::createTimeClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyYielder::createYielderClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.common.RubyWarnings::createWarningModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.bigdecimal.RubyBigDecimal::createBigDecimal(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.digest.RubyDigest::createDigest(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.digest.RubyDigest::createDigestBubbleBabble(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.digest.RubyDigest::createDigestMD5(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.digest.RubyDigest::createDigestRMD160(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.digest.RubyDigest::createDigestSHA1(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.digest.RubyDigest::createDigestSHA2(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.ext.etc.RubyEtc::createEtcModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.AbstractInvoker::createAbstractInvokerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.AbstractMemory::createAbstractMemoryClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.AutoPointer::createAutoPointerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.Buffer::createBufferClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.CallbackInfo::createCallbackInfoClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.Enums::createEnumsClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'parameter void org.jruby.ext.ffi.IOModule::createIOModule(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.MemoryPointer::createMemoryPointerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter void org.jruby.ext.ffi.Platform::createPlatformModule(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.Pointer::createPointerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ffi.Struct::createStructClass(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.StructByValue::createStructByValueClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.StructLayout::createStructLayoutClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass, org.jruby.RubyModule, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.Type::createTypeClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.io.FileDescriptorIO::createFileDescriptorIOClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ffi.jffi.CallbackManager::createCallbackClass(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.jffi.DynamicLibrary::createDynamicLibraryClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ffi.jffi.Function::createFunctionClass(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.ffi.jffi.JFFIInvoker::createInvokerClass(===org.jruby.runtime.ThreadContext===, org.jruby.RubyModule)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.ffi.jffi.VariadicInvoker::createVariadicInvokerClass(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.fiber.ThreadFiberLibrary::createFiberClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyClass org.jruby.ext.jruby.JRubyObjectInputStream::createJRubyObjectInputStream(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ext.monitor.Monitor::createMonitorClass(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ext.socket.Addrinfo::createAddrinfo(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.socket.Ifaddr::createIfaddr(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.socket.Option::createOption(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.ext.syslog.RubySyslog::createSyslog(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ext.tracepoint.TracePoint::createTracePointClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.ext.zlib.RubyZlib::createZlibModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.javasupport.Java::createJavaModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.javasupport.JavaArrayUtilities::createJavaArrayUtilitiesModule(===org.jruby.runtime.ThreadContext===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.javasupport.JavaObject::createJavaObjectClass(org.jruby.Ruby, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::buildDynamicString(org.jcodings.Encoding, int, boolean, boolean, boolean, java.lang.String, int, java.util.List<org.jruby.ir.targets.ValueCompiler.DStringElement>)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushBeginlessRange(long, boolean)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushChilledString(org.jruby.util.ByteList, int)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushEndlessRange(long, boolean)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushFixnumArray(java.util.List<java.lang.Long>)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushFloatArray(java.util.List<java.lang.Double>)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushFrozenString(org.jruby.util.ByteList, int)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushRange(long, long, boolean)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.ValueCompiler::pushRange(org.jruby.util.ByteList, int, org.jruby.util.ByteList, int, boolean)|java.method.addedToInterface' => '10.0',
'parameter R org.jruby.ir.IRTranslator<R, S>::execute(===org.jruby.runtime.ThreadContext===, org.jruby.ParseResult, S)|java.method.parameterTypeChanged' => '10.0',
'parameter R org.jruby.ir.IRTranslator<R, S>::execute(===org.jruby.runtime.ThreadContext===, org.jruby.ir.IRScriptBody, S)|java.method.parameterTypeChanged' => '10.0',
'parameter void org.jruby.ir.representations.CFG::addEdge(org.jruby.ir.representations.BasicBlock, org.jruby.ir.representations.BasicBlock, ===org.jruby.ir.representations.CFG.EdgeType===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.ir.representations.BasicBlock org.jruby.ir.representations.CFG::getIncomingSourceOfType(org.jruby.ir.representations.BasicBlock, ===org.jruby.ir.representations.CFG.EdgeType===)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.ir.representations.BasicBlock org.jruby.ir.representations.CFG::getOutgoingDestinationOfType(org.jruby.ir.representations.BasicBlock, ===org.jruby.ir.representations.CFG.EdgeType===)|java.method.parameterTypeChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.ir.representations.BasicBlock> org.jruby.ir.representations.CFG::getOutgoingDestinationsNotOfType(org.jruby.ir.representations.BasicBlock, ===org.jruby.ir.representations.CFG.EdgeType===)|java.method.parameterTypeChanged' => '10.0',
'parameter java.lang.Iterable<org.jruby.ir.representations.BasicBlock> org.jruby.ir.representations.CFG::getOutgoingDestinationsOfType(org.jruby.ir.representations.BasicBlock, ===org.jruby.ir.representations.CFG.EdgeType===)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.internal.runtime.methods.InterpretedIRBodyMethod::callInternal(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.internal.runtime.methods.InterpretedIRMethod::pre(org.jruby.ir.interpreter.InterpreterContext, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, java.lang.String, org.jruby.runtime.Block, org.jruby.RubyModule)|java.method.removed' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ir.interpreter.Interpreter::execute(===org.jruby.runtime.ThreadContext===, org.jruby.ir.IRScriptBody, org.jruby.runtime.builtin.IRubyObject)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ir.interpreter.InterpreterEngine::processCall(org.jruby.runtime.ThreadContext, org.jruby.ir.instructions.Instr, org.jruby.ir.Operation, org.jruby.runtime.DynamicScope, org.jruby.parser.StaticScope, java.lang.Object[], org.jruby.runtime.builtin.IRubyObject, java.lang.String)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.internal.runtime.methods.DynamicMethod org.jruby.ir.runtime.IRRuntimeHelpers::newInterpretedMetaClass(===org.jruby.runtime.ThreadContext===, org.jruby.ir.IRScope, org.jruby.runtime.builtin.IRubyObject)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ir.instructions.BNEInstr::<init>(org.jruby.ir.operands.Label, org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand)|java.method.visibilityReduced' => '10.0',
'parameter void org.jruby.ir.instructions.BuildCompoundStringInstr::<init>(org.jruby.ir.operands.Variable, org.jruby.ir.operands.Operand[], org.jcodings.Encoding, int, ===org.jruby.ir.builder.StringStyle===, java.lang.String, int)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ir.instructions.Instr::simplifyOperands(java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>, boolean)|java.method.visibilityReduced' => '10.0',
'method void org.jruby.ir.instructions.LoadLocalVarInstr::simplifyOperands(java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>, boolean)|java.method.visibilityReduced' => '10.0',
'method void org.jruby.ir.instructions.StoreLocalVarInstr::simplifyOperands(java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>, boolean)|java.method.visibilityReduced' => '10.0',
'parameter org.jruby.ast.executable.ScriptAndCode org.jruby.ir.Compiler::execute(===org.jruby.runtime.ThreadContext===, org.jruby.ir.IRScriptBody, org.jruby.util.ClassDefiningClassLoader)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.ir.operands.Operand org.jruby.ir.builder.IRBuilderAST::buildConstDeclAssignment(org.jruby.ast.ConstDeclNode, ===org.jruby.ir.builder.IRBuilder.CodeBlock===)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ir.instructions.CallBase::simplifyOperands(java.util.Map<org.jruby.ir.operands.Operand, org.jruby.ir.operands.Operand>, boolean)|java.method.visibilityReduced' => '10.0',
'parameter org.jruby.RubyHash org.jruby.ir.runtime.IRRuntimeHelpers::constructHashFromArray(===org.jruby.runtime.ThreadContext===, org.jruby.runtime.builtin.IRubyObject[])|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.RubyModule org.jruby.ir.runtime.IRRuntimeHelpers::newRubyClassFromIR(===org.jruby.runtime.ThreadContext===, java.lang.String, org.jruby.parser.StaticScope, java.lang.Object, java.lang.Object, boolean)|java.method.parameterTypeChanged' => '10.0',
'method java.lang.invoke.MethodHandle org.jruby.ir.targets.indy.InvokeSite::getHandle(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.callsite.CacheEntry) throws java.lang.Throwable|java.method.numberOfParametersChanged' => '10.0',
'method int org.jruby.ir.targets.indy.InvokeSite::getNativeArgCount(org.jruby.internal.runtime.methods.DynamicMethod, org.jruby.internal.runtime.methods.DynamicMethod.NativeCall)|java.method.removed' => '10.0',
'method org.jruby.RubyClass org.jruby.runtime.Helpers::performSingletonMethodChecks(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, java.lang.String) throws org.jruby.exceptions.RaiseException|java.method.removed' => '10.0',
'method org.jruby.ir.operands.Operand org.jruby.ir.builder.IRBuilder<U, V, W, X, Y, Z>::putConstant(Y, org.jruby.ir.builder.IRBuilder.CodeBlock)|java.method.abstractMethodAdded' => '10.0',
'method void org.jruby.compiler.JITCompiler::buildThresholdReached(org.jruby.runtime.ThreadContext, org.jruby.compiler.Compilable, boolean)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ir.targets.InvocationCompiler::invokeBlockGiven(java.lang.String, java.lang.String)|java.method.addedToInterface' => '10.0',
'method void org.jruby.ir.targets.InvocationCompiler::invokeFrameName(java.lang.String, java.lang.String)|java.method.addedToInterface' => '10.0',
'field org.jruby.ObjectFlags.TAINTED_F|java.field.removed' => '10.0',
'field org.jruby.RubyInteger.SINGLE_CHAR_BYTELISTS19|java.field.removed' => '10.0',
'field org.jruby.RubyThread.Status.ABORTING|java.field.removed' => '10.0',
'class org.jruby.dirgra.DataIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.DataIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.DirectedGraph<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.Edge<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.class.noLongerImplementsInterface' => '10.0',
'class org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.EdgeTypeIterable<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.class.superTypeTypeParametersChanged' => '10.0',
'class org.jruby.dirgra.EdgeTypeIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.class.noLongerImplementsInterface' => '10.0',
'class org.jruby.dirgra.EdgeTypeIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.EdgeTypeIterator<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.class.superTypeTypeParametersChanged' => '10.0',
'class org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.class.noLongerImplementsInterface' => '10.0',
'class org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.generics.formalTypeParameterAdded' => '10.0',
'class org.jruby.dirgra.Vertex<T extends org.jruby.dirgra.ExplicitVertexID, U>|java.class.superTypeTypeParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.zlib.JZlibRubyGzipReader::gets_18(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFileTest.FileTestFileMethods::exist_p(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyFileTest::exist_p(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::minus_at(org.jruby.runtime.ThreadContext)|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyTime::initialize(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[])|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.javasupport.JavaObject::op_equal(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject) @ org.jruby.javasupport.JavaArray|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.javasupport.JavaObject::op_equal(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject) @ org.jruby.javasupport.JavaClass|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.javasupport.JavaObject::op_equal(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.annotation.attributeValueChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, int)|java.method.nowFinal' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.runtime.ThreadContext, int)|java.method.nowFinal' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.internal.runtime.methods.JavaMethod.JavaMethodZeroOrN::call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyModule, java.lang.String, org.jruby.runtime.Block) @ org.jruby.RubyStruct$StructMethods$INVOKER$s$0$0$members|java.method.nowFinal' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.internal.runtime.methods.JavaMethod.JavaMethodN::call(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.RubyModule, java.lang.String, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block) @ org.jruby.RubySystemCallError$INVOKER$i$0$2$initialize|java.method.nowFinal' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.thread.Queue::freeze(org.jruby.runtime.ThreadContext)|java.method.nowFinal' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.coverage.CoverageModule::setup(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.annotation.attributeRemoved' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.thread.ConditionVariable::setup(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.thread.Mutex::setup(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.thread.Queue::setup(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.thread.Queue::setupError(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.ext.thread.SizedQueue::setup(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyClass, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method <T extends org.jruby.internal.runtime.AbstractIRMethod & org.jruby.compiler.Compilable> void org.jruby.internal.runtime.AbstractIRMethod::tryJit(org.jruby.runtime.ThreadContext, T, boolean)|java.method.numberOfParametersChanged' => '10.0',
'method <T extends org.jruby.internal.runtime.AbstractIRMethod & org.jruby.compiler.Compilable> void org.jruby.internal.runtime.AbstractIRMethod::tryJit(org.jruby.runtime.ThreadContext, T, boolean)|java.method.visibilityReduced' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfFloat32(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfFloat64(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfSigned16(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfSigned32(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfSigned64(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfSigned8(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfUnsigned16(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfUnsigned32(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfUnsigned64(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'parameter org.jruby.runtime.builtin.IRubyObject org.jruby.ext.ffi.MemoryUtil::getArrayOfUnsigned8(===org.jruby.runtime.ThreadContext===, org.jruby.ext.ffi.MemoryIO, long, int)|java.method.parameterTypeChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfFloat32(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfFloat64(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfSigned16(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfSigned32(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfSigned64(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfSigned8(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfUnsigned16(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfUnsigned32(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfUnsigned64(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ext.ffi.MemoryUtil::putArrayOfUnsigned8(org.jruby.ext.ffi.MemoryIO, long, org.jruby.RubyArray)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.ast.StrNode::<init>(int, org.jruby.util.ByteList, int, org.jruby.ir.builder.StringStyle)|java.method.numberOfParametersChanged' => '10.0',
'method T org.jruby.ast.visitor.NodeVisitor<T>::visitErrorNode(org.jruby.ast.ErrorNode)|java.method.addedToInterface' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::taint(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyBoolean org.jruby.RubyKernel::tainted_p(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::untaint(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method int org.jruby.api.API::rb_cloexec_pipe(org.jruby.Ruby, int[])|java.method.removed' => '10.0',
'method void org.jruby.api.API::rb_maygvl_fd_fix_cloexec(org.jruby.Ruby, int)|java.method.removed' => '10.0',
'method int org.jruby.api.API::rb_pipe(org.jruby.Ruby, int[])|java.method.removed' => '10.0',
'method <T> T org.jruby.api.API::rb_rescue_typeerror(org.jruby.runtime.ThreadContext, T, java.util.function.Supplier<T>)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.api.API::rb_sys_fail_path(org.jruby.Ruby, java.lang.String)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::untrust(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyBoolean org.jruby.RubyKernel::untrusted_p(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method void org.jruby.javasupport.JavaObject::registerRubyMethods(org.jruby.Ruby, org.jruby.RubyClass)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::new_(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::new_(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::new_(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::op_quo20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::ver(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyHash::set_default_proc20(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::caller20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::lines20(org.jruby.runtime.ThreadContext, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::lines20(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.Block)|java.method.removed' => '10.0',
'method org.jruby.RubyArray org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newRawArray(org.jruby.runtime.ThreadContext, int)|java.method.removed' => '10.0',
'method java.lang.String org.jruby.compiler.Compilable<T>::resolveFullName(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::rand18(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject[])|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyDir::rmdir19(org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyString::match19(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'nil|java.method.attributeRemovedFromAnnotationType' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyProcess.RubyStatus::op_rshift(org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '1.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.javasupport.Java::get_package_module_dot_format(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.JavaArray::fillWithExceptionHandling(org.jruby.runtime.ThreadContext, int, int, java.lang.Object)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.javasupport.JavaArray::setWithExceptionHandling(org.jruby.runtime.ThreadContext, int, java.lang.Object)|java.method.numberOfParametersChanged' => '10.0',
'class org.jruby.RubyObjectSpace.WeakMap|java.class.nonFinalClassInheritsFromNewClass' => '10.0',
'parameter void org.jruby.ext.socket.RubyUNIXSocket::init_unixsock(===org.jruby.runtime.ThreadContext===, org.jruby.runtime.builtin.IRubyObject, boolean)|java.method.parameterTypeChanged' => '10.0',
'method java.lang.String org.jruby.RubyClass.MethodReificator::defineInstanceMethod(org.jruby.runtime.ThreadContext, java.lang.String, java.lang.String, org.jruby.runtime.Signature, org.jruby.runtime.PositionAware, java.lang.Class<?>[]) @ org.jruby.RubyClass.ConcreteJavaReifier|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubyClass.MethodReificator::defineInstanceMethods(org.jruby.runtime.ThreadContext, java.util.Set<java.lang.String>) @ org.jruby.RubyClass.ConcreteJavaReifier|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyEnumerator::defineEnumerator(org.jruby.runtime.ThreadContext, org.jruby.RubyClass, org.jruby.RubyModule)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyUnboundMethod::defineUnboundMethodClass(org.jruby.runtime.ThreadContext, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.internal.runtime.RubyRunnable::<init>(org.jruby.RubyThread, org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject[], org.jruby.runtime.Block, int)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubyModule::checkForCyclicPrepend(org.jruby.runtime.ThreadContext, org.jruby.RubyModule) throws org.jruby.exceptions.RaiseException|java.method.numberOfParametersChanged' => '10.0',
'class org.jruby.RubyBasicObject|java.class.defaultSerializationChanged' => '10.0',
'field org.jruby.RubyBasicObject.STAMP_OFFSET|java.field.nowConstant' => '10.0',
'field org.jruby.RubyBasicObject.VAR_TABLE_OFFSET|java.field.nowConstant' => '10.0',
'method org.jruby.RubyClass org.jruby.RubyBasicObject::type_deprecated()|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyKernel::trust(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method void org.jruby.RubyArgsFile::initArgsFile(org.jruby.runtime.ThreadContext, org.jruby.RubyModule, org.jruby.internal.runtime.GlobalVariables)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::safeArraySet(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject[], int, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method T org.jruby.javasupport.JavaUtil.NumericConverter<T>::coerce(org.jruby.runtime.ThreadContext, org.jruby.RubyNumeric, java.lang.Class<T>)|java.method.addedToInterface' => '10.0',
'method org.jruby.RubyModule org.jruby.javasupport.binding.Initializer::initialize(org.jruby.runtime.ThreadContext, org.jruby.RubyModule)|java.method.abstractMethodAdded' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.bigdecimal.RubyBigDecimal::abs(org.jruby.runtime.ThreadContext)|java.annotation.attributeRemoved' => '10.0',
'method void org.jruby.RubyModule::addMethodAtBootTimeOnly(java.lang.String, org.jruby.internal.runtime.methods.DynamicMethod)|java.method.removed' => '10.0',
'method org.jruby.ext.ffi.Pointer org.jruby.ext.ffi.CallbackManager::getCallback(org.jruby.runtime.ThreadContext, org.jruby.ext.ffi.CallbackInfo, java.lang.Object)|java.method.abstractMethodAdded' => '10.0',
'method org.jruby.CompatVersion org.jruby.RubyInstanceConfig::getCompatVersion()|java.method.removed' => '10.0',
'method void org.jruby.RubyInstanceConfig::setCompatVersion(org.jruby.CompatVersion)|java.method.removed' => '10.0',
'method void org.jruby.RubyNil::<init>(org.jruby.Ruby, org.jruby.RubyClass)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubySymbol.SymbolProcBody::<init>(org.jruby.Ruby, java.lang.String, org.jruby.RubySymbol)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubySymbol.SymbolProcBody::<init>(org.jruby.Ruby, java.lang.String, org.jruby.RubySymbol, org.jruby.parser.StaticScope)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.ext.pathname.RubyPathname.PathnameKernelMethods::newPathname(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'parameter org.jruby.runtime.callsite.CacheEntry org.jruby.RubyModule::resolveRefinedMethod(===org.jruby.RubyModule===, org.jruby.runtime.callsite.CacheEntry, java.lang.String, boolean)|java.method.parameterTypeChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, int)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.Ruby, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.runtime.ThreadContext)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArray(org.jruby.runtime.ThreadContext, int)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.RubyArray<?> org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::newArrayLight(org.jruby.RubyClass, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method void org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::storeInternal(org.jruby.runtime.ThreadContext, int, org.jruby.runtime.builtin.IRubyObject)|java.method.numberOfParametersChanged' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyClass::subclasses(org.jruby.runtime.ThreadContext, org.jruby.runtime.builtin.IRubyObject)|java.method.removed' => '10.0',
'method org.jruby.RubyFixnum org.jruby.RubyComplex::hash(org.jruby.runtime.ThreadContext)|java.method.returnTypeChangedCovariantly' => '10.0',
'method org.jruby.RubyFixnum org.jruby.RubyRational::hash(org.jruby.runtime.ThreadContext)|java.method.returnTypeChangedCovariantly' => '10.0',
'method void org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::finishRawArray(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method org.jruby.runtime.builtin.IRubyObject org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::choice(org.jruby.runtime.ThreadContext)|java.method.removed' => '10.0',
'method void org.jruby.RubyArray<T extends org.jruby.runtime.builtin.IRubyObject>::modifyCheck(org.jruby.runtime.ThreadContext)|java.method.finalMethodAddedToNonFinalClass' => '10.0',
'method java.lang.Boolean org.jruby.RubyInstanceConfig::isFrozenStringLiteral()|java.method.returnTypeChanged' => '10.0',
}