RegExp: remove println

GitOrigin-RevId: 1b2aa2e4154d739ada636667a444d49118a791ab
This commit is contained in:
Bas Leijdekkers
2025-07-15 18:39:09 +00:00
committed by intellij-monorepo-bot
parent 21c879a5da
commit 9cc3ddae49
@@ -206,9 +206,7 @@ public class RegExpInspectionConfiguration implements Comparable<RegExpInspectio
case COMMENTS -> RegExpBundle.message("regexp.dialog.flag.comments.description");
case LITERAL -> RegExpBundle.message("regexp.dialog.flag.literal.description");
};
String html = HtmlChunk.html().child(HtmlChunk.div("width: 200px").addRaw(description)).toString();
System.out.println("html = " + html);
return html;
return HtmlChunk.html().child(HtmlChunk.div("width: 200px").addRaw(description)).toString();
}
}