Skip to content

Commit

Permalink
Remove unnecessary function call
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-gromeyer committed Jun 1, 2024
1 parent 43c0981 commit db1494d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/html2md.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -626,9 +626,7 @@ void Converter::TagBreak::OnHasLeftOpeningTag(Converter *c) {
c->appendToMd(" \n");
}

void Converter::TagBreak::OnHasLeftClosingTag(Converter *c) {
OnHasLeftOpeningTag(c);
}
void Converter::TagBreak::OnHasLeftClosingTag(Converter *c) {}

void Converter::TagDiv::OnHasLeftOpeningTag(Converter *c) {
if (c->prev_ch_in_md_ != '\n')
Expand Down

0 comments on commit db1494d

Please sign in to comment.