Skip to content

Commit 01dcda5

Browse files
author
Matthias Güdemann
committed
status()->debug()
1 parent 603aced commit 01dcda5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/java_bytecode/java_bytecode_parser.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,7 +1431,7 @@ void java_bytecode_parsert::rclass_attribute(classt &parsed_class)
14311431
u2 num_bootstrap_arguments = read_u2();
14321432

14331433
lambda_method_handlet handle;
1434-
status() << "INFO: parse BootstrapMethod handle "
1434+
debug() << "INFO: parse BootstrapMethod handle "
14351435
<< num_bootstrap_arguments << " #args"
14361436
<< eom;
14371437
parse_methodhandle(entry, handle);
@@ -1483,7 +1483,7 @@ void java_bytecode_parsert::rclass_attribute(classt &parsed_class)
14831483
return;
14841484

14851485
lambda_method_handlet real_handle;
1486-
status() << "INFO: parse lambda handle" << eom;
1486+
debug() << "INFO: parse lambda handle" << eom;
14871487
const pool_entryt &lambda_entry = pool_entry(arg_index2);
14881488
parse_methodhandle(lambda_entry, real_handle);
14891489
if(
@@ -1502,14 +1502,14 @@ void java_bytecode_parsert::rclass_attribute(classt &parsed_class)
15021502
real_handle.method_type = pool_entry(arg3.ref1).s;
15031503
parsed_class.lambda_method_handle_map[parsed_class.name].push_back(
15041504
real_handle);
1505-
status()
1505+
debug()
15061506
<< "lambda function reference "
15071507
<< id2string(real_handle.lambda_method_name) << " in class \""
15081508
<< parsed_class.name << "\""
15091509
<< "\n interface type is "
1510-
<< id2string(real_handle.interface_type = pool_entry(arg1.ref1).s)
1510+
<< id2string(pool_entry(arg1.ref1).s)
15111511
<< "\n method type is "
1512-
<< id2string(real_handle.interface_type = pool_entry(arg3.ref1).s)
1512+
<< id2string(pool_entry(arg3.ref1).s)
15131513
<< eom;
15141514
}
15151515
}

0 commit comments

Comments
 (0)