@@ -1431,7 +1431,7 @@ void java_bytecode_parsert::rclass_attribute(classt &parsed_class)
1431
1431
u2 num_bootstrap_arguments = read_u2 ();
1432
1432
1433
1433
lambda_method_handlet handle;
1434
- status () << " INFO: parse BootstrapMethod handle "
1434
+ debug () << " INFO: parse BootstrapMethod handle "
1435
1435
<< num_bootstrap_arguments << " #args"
1436
1436
<< eom;
1437
1437
parse_methodhandle (entry, handle);
@@ -1483,7 +1483,7 @@ void java_bytecode_parsert::rclass_attribute(classt &parsed_class)
1483
1483
return ;
1484
1484
1485
1485
lambda_method_handlet real_handle;
1486
- status () << " INFO: parse lambda handle" << eom;
1486
+ debug () << " INFO: parse lambda handle" << eom;
1487
1487
const pool_entryt &lambda_entry = pool_entry (arg_index2);
1488
1488
parse_methodhandle (lambda_entry, real_handle);
1489
1489
if (
@@ -1502,14 +1502,14 @@ void java_bytecode_parsert::rclass_attribute(classt &parsed_class)
1502
1502
real_handle.method_type = pool_entry (arg3.ref1 ).s ;
1503
1503
parsed_class.lambda_method_handle_map [parsed_class.name ].push_back (
1504
1504
real_handle);
1505
- status ()
1505
+ debug ()
1506
1506
<< " lambda function reference "
1507
1507
<< id2string (real_handle.lambda_method_name ) << " in class \" "
1508
1508
<< parsed_class.name << " \" "
1509
1509
<< " \n interface type is "
1510
- << id2string (real_handle. interface_type = pool_entry (arg1.ref1 ).s )
1510
+ << id2string (pool_entry (arg1.ref1 ).s )
1511
1511
<< " \n method type is "
1512
- << id2string (real_handle. interface_type = pool_entry (arg3.ref1 ).s )
1512
+ << id2string (pool_entry (arg3.ref1 ).s )
1513
1513
<< eom;
1514
1514
}
1515
1515
}
0 commit comments