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);
|
||||
});
|
||||
header.add(copyBtn);
|
||||
|
||||
JButton clearBtn =
|
||||
new JButton(
|
||||
MessageUtils.getLocalizedMessage("button.clear"));
|
||||
clearBtn.setMargin(new Insets(3, 3, 3, 3));
|
||||
clearBtn.addActionListener(
|
||||
|
||||
JButton clearBtn = new JButton(MessageUtils.getLocalizedMessage("button.clear"));
|
||||
clearBtn.setMargin(new Insets(3, 3, 3, 3));
|
||||
clearBtn.addActionListener(
|
||||
e -> {
|
||||
logTextArea.setText(null);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue