Skip to content

Commit c1aa16c

Browse files
thk123Matthias Güdemann
thk123
authored and
Matthias Güdemann
committed
Renamed parameter variables
1 parent 4bb98f0 commit c1aa16c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/java_bytecode/java_bytecode_parser.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1860,9 +1860,9 @@ void java_bytecode_parsert::read_bootstrapmethods_entry(classt &parsed_class)
18601860
// We read the three arguments here to see whether they correspond to
18611861
// our hypotheses for this being a lambda function entry.
18621862

1863-
u2 argument_index1 = u2_values[0];
1864-
u2 argument_index2 = u2_values[1];
1865-
u2 argument_index3 = u2_values[2];
1863+
u2 interface_type_index = u2_values[0];
1864+
u2 method_handle_index = u2_values[1];
1865+
u2 method_type_index = u2_values[2];
18661866

18671867
// The additional arguments for the altmetafactory call are skipped,
18681868
// as they are currently not used. We verify though that they are of
@@ -1883,9 +1883,9 @@ void java_bytecode_parsert::read_bootstrapmethods_entry(classt &parsed_class)
18831883
}
18841884

18851885
const pool_entryt &interface_type_argument =
1886-
pool_entry(argument_index1);
1887-
const pool_entryt &method_handle_argument = pool_entry(argument_index2);
1888-
const pool_entryt &method_type_argument = pool_entry(argument_index3);
1886+
pool_entry(interface_type_index);
1887+
const pool_entryt &method_handle_argument = pool_entry(method_handle_index);
1888+
const pool_entryt &method_type_argument = pool_entry(method_type_index);
18891889

18901890
if(
18911891
!(interface_type_argument.tag == CONSTANT_MethodType &&

0 commit comments

Comments
 (0)