mirror of https://github.com/apache/lucene.git
fix: code layout
This commit is contained in:
parent
753edd83c3
commit
fc025c8c78
|
@ -86,12 +86,10 @@ public final class LogsPanelProvider {
|
||||||
clipboard.setContents(selection, null);
|
clipboard.setContents(selection, null);
|
||||||
});
|
});
|
||||||
header.add(copyBtn);
|
header.add(copyBtn);
|
||||||
|
|
||||||
JButton clearBtn =
|
JButton clearBtn = new JButton(MessageUtils.getLocalizedMessage("button.clear"));
|
||||||
new JButton(
|
clearBtn.setMargin(new Insets(3, 3, 3, 3));
|
||||||
MessageUtils.getLocalizedMessage("button.clear"));
|
clearBtn.addActionListener(
|
||||||
clearBtn.setMargin(new Insets(3, 3, 3, 3));
|
|
||||||
clearBtn.addActionListener(
|
|
||||||
e -> {
|
e -> {
|
||||||
logTextArea.setText(null);
|
logTextArea.setText(null);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue