Fix style issues in EnhancedDebugger

This commit is contained in:
Florian Schmaus 2018-03-28 14:47:20 +02:00
parent b5209f4701
commit 74e3d56ba2
1 changed files with 8 additions and 10 deletions

View File

@ -324,7 +324,6 @@ public class EnhancedDebugger extends SmackDebugger {
menu.add(menuItem1);
// Add listener to the text area so the popup menu can come up.
messageTextArea.addMouseListener(new PopupListener(menu));
// CHECKSTYLE:OFF
JPanel sublayout = new JPanel(new BorderLayout());
sublayout.add(new JScrollPane(messageTextArea), BorderLayout.CENTER);
@ -338,7 +337,6 @@ public class EnhancedDebugger extends SmackDebugger {
messagesTable.setRowCount(0);
}
});
// CHECKSTYLE:ON
sublayout.add(clearb, BorderLayout.NORTH);
allPane.setBottomComponent(sublayout);