Code cleanup (#1461)

* Code cleanup

* Fix flux tests

* Fix checkstyle errors

* Fix compile error
This commit is contained in:
Ilkka Seppälä
2020-07-30 20:28:47 +03:00
committed by GitHub
parent 5381387026
commit 417f21ed3d
243 changed files with 1154 additions and 1162 deletions

View File

@ -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.

View File

@ -30,7 +30,7 @@ package com.iluwatar.intercepting.filter;
*/
public class FilterManager {
private FilterChain filterChain;
private final FilterChain filterChain;
public FilterManager() {
filterChain = new FilterChain();

View File

@ -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.