Remove warning from self closing tags, as it handles list items correctly.

This commit is contained in:
Relintai 2022-02-04 06:07:41 +01:00
parent cf8883fdd1
commit 0e4222e5af

View File

@ -323,8 +323,7 @@ String BBCodeParserTag::to_string(const int level) {
if (tags.size() != 0) {
s.append_repeat(" ", level);
s += "(!SELF CLOSING TAG HAS TAGS!)\n";
for (int i = 0; i < tags.size(); ++i) {
s += tags[i]->to_string(level + 1) + "\n";
}