File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -501,11 +501,16 @@ void java_bytecode_convert_classt::convert(
501
501
{
502
502
for (const methodt &method : overlay_class.get ().methods )
503
503
{
504
- if (is_ignored_method (method))
505
- continue ;
506
504
const irep_idt method_identifier =
507
505
qualified_classname + " ." + id2string (method.name )
508
506
+ " :" + method.descriptor ;
507
+ if (is_ignored_method (method))
508
+ {
509
+ debug ()
510
+ << " Ignoring method: '" << method_identifier << " '"
511
+ << eom;
512
+ continue ;
513
+ }
509
514
if (method_bytecode.contains_method (method_identifier))
510
515
{
511
516
// This method has already been discovered and added to method_bytecode
@@ -544,11 +549,16 @@ void java_bytecode_convert_classt::convert(
544
549
}
545
550
for (const methodt &method : c.methods )
546
551
{
547
- if (is_ignored_method (method))
548
- continue ;
549
552
const irep_idt method_identifier=
550
553
qualified_classname + " ." + id2string (method.name )
551
554
+ " :" + method.descriptor ;
555
+ if (is_ignored_method (method))
556
+ {
557
+ debug ()
558
+ << " Ignoring method: '" << method_identifier << " '"
559
+ << eom;
560
+ continue ;
561
+ }
552
562
if (method_bytecode.contains_method (method_identifier))
553
563
{
554
564
// This method has already been discovered while parsing an overlay
You can’t perform that action at this time.
0 commit comments