Code cleanup (#1461)
* Code cleanup * Fix flux tests * Fix checkstyle errors * Fix compile error
This commit is contained in:
@ -51,11 +51,11 @@ public class Client extends JFrame { // NOSONAR
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private transient FilterManager filterManager;
|
||||
private JLabel jl;
|
||||
private JTextField[] jtFields;
|
||||
private JTextArea[] jtAreas;
|
||||
private JButton clearButton;
|
||||
private JButton processButton;
|
||||
private final JLabel jl;
|
||||
private final JTextField[] jtFields;
|
||||
private final JTextArea[] jtAreas;
|
||||
private final JButton clearButton;
|
||||
private final JButton processButton;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
@ -30,7 +30,7 @@ package com.iluwatar.intercepting.filter;
|
||||
*/
|
||||
public class FilterManager {
|
||||
|
||||
private FilterChain filterChain;
|
||||
private final FilterChain filterChain;
|
||||
|
||||
public FilterManager() {
|
||||
filterChain = new FilterChain();
|
||||
|
@ -46,9 +46,9 @@ public class Target extends JFrame { //NOSONAR
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private JTable jt;
|
||||
private DefaultTableModel dtm;
|
||||
private JButton del;
|
||||
private final JTable jt;
|
||||
private final DefaultTableModel dtm;
|
||||
private final JButton del;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
Reference in New Issue
Block a user