File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -561,7 +561,7 @@ void java_bytecode_convert_methodt::convert(
561
561
method_symbol.location .set_function (method_identifier);
562
562
563
563
for (const auto &exception_name : m.throws_exception_table )
564
- method_type.add_throws_exceptions (exception_name);
564
+ method_type.add_throws_exception (exception_name);
565
565
566
566
const std::string signature_string = pretty_signature (method_type);
567
567
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ class java_method_typet : public code_typet
131
131
return exceptions;
132
132
}
133
133
134
- void add_throws_exceptions (irep_idt exception )
134
+ void add_throws_exception (irep_idt exception )
135
135
{
136
136
add (ID_exceptions_thrown_list).get_sub ().push_back (irept (exception ));
137
137
}
You can’t perform that action at this time.
0 commit comments