@@ -597,8 +597,7 @@ void generator::generate_diagram(std::ostream &ostr) const
597597 from.value ().type_name () == " objc_method" ||
598598 config ().combine_free_functions_into_file_participants ()) {
599599 generate_participant (ostr, *from_activity_id);
600- ostr << " [->"
601- << " " << generate_alias (from.value ()) << " : "
600+ ostr << " [->" << " " << generate_alias (from.value ()) << " : "
602601 << from.value ().message_name (
603602 select_method_arguments_render_mode ())
604603 << ' \n ' ;
@@ -638,8 +637,7 @@ void generator::generate_diagram(std::ostream &ostr) const
638637 from.value ().type_name () == " objc_method" ||
639638 config ().combine_free_functions_into_file_participants ()) {
640639 generate_participant (ostr, from_activity_id);
641- ostr << " [->"
642- << " " << generate_alias (from.value ()) << " : "
640+ ostr << " [->" << " " << generate_alias (from.value ()) << " : "
643641 << from.value ().message_name (
644642 select_method_arguments_render_mode ())
645643 << ' \n ' ;
@@ -704,8 +702,7 @@ void generator::generate_diagram(std::ostream &ostr) const
704702 if (from.value ().type_name () == " method" ||
705703 from.value ().type_name () == " objc_method" ||
706704 config ().combine_free_functions_into_file_participants ()) {
707- ostr << " [->"
708- << " " << from_alias << " : "
705+ ostr << " [->" << " " << from_alias << " : "
709706 << from.value ().message_name (render_mode) << ' \n ' ;
710707 }
711708
@@ -718,8 +715,7 @@ void generator::generate_diagram(std::ostream &ostr) const
718715 config ().combine_free_functions_into_file_participants ()) {
719716
720717 if (!from.value ().is_void ()) {
721- ostr << " [<--"
722- << " " << from_alias;
718+ ostr << " [<--" << " " << from_alias;
723719
724720 if (config ().generate_return_types ())
725721 ostr << " : //" << from.value ().return_type () << " //" ;
0 commit comments