mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inspection tool window: unused declaration view more pretty
This commit is contained in:
+1
@@ -596,6 +596,7 @@ public class UnusedDeclarationPresentation extends DefaultInspectionToolPresenta
|
||||
css.addRule("p.problem-description-group {text-indent: " + JBUI.scale(9) + "px;font-weight:bold;}");
|
||||
css.addRule("div.problem-description {margin-left: " + JBUI.scale(9) + "px;}");
|
||||
css.addRule("ul {margin-left:" + JBUI.scale(10) + "px;text-indent: 0}");
|
||||
css.addRule("code {font-family:" + UIUtil.getLabelFont().getFamily() + "}");
|
||||
final StringBuffer buf = new StringBuffer();
|
||||
getComposer().compose(buf, entity, false);
|
||||
final String text = buf.toString();
|
||||
|
||||
@@ -273,7 +273,6 @@ public abstract class HTMLComposerImpl extends HTMLComposer {
|
||||
@Override
|
||||
public void appendElementOutReferences(StringBuffer buf, RefElement refElement) {
|
||||
if (refElement.getOutReferences().size() > 0) {
|
||||
buf.append(BR);
|
||||
appendHeading(buf, InspectionsBundle.message("inspection.export.results.uses"));
|
||||
startList(buf);
|
||||
for (RefElement refCallee : refElement.getOutReferences()) {
|
||||
|
||||
Reference in New Issue
Block a user