Fixed codacy issues

This commit is contained in:
Kelly Kelly 2019-10-03 17:17:02 -04:00
parent fe5f587198
commit 1ac05409a0
4 changed files with 2 additions and 10 deletions

View File

@ -64,8 +64,6 @@ public final class AccountsBrowser extends JPanel implements ExplorerManager.Pro
private final Outline outline; private final Outline outline;
private final ExplorerManager accountsTableEM = new ExplorerManager(); private final ExplorerManager accountsTableEM = new ExplorerManager();
final private RelationshipBrowser relationshipBrowser;
/* /*
* This lookup proxies the selection lookup of both he accounts table and * This lookup proxies the selection lookup of both he accounts table and
@ -74,7 +72,6 @@ public final class AccountsBrowser extends JPanel implements ExplorerManager.Pro
private final ProxyLookup proxyLookup; private final ProxyLookup proxyLookup;
public AccountsBrowser(RelationshipBrowser relationshipBrowser) { public AccountsBrowser(RelationshipBrowser relationshipBrowser) {
this.relationshipBrowser = relationshipBrowser;
initComponents(); initComponents();
outline = outlineView.getOutline(); outline = outlineView.getOutline();

View File

@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.9" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo"> <Form version="1.9" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<NonVisualComponents>
<Component class="javax.swing.JSeparator" name="jSeparator4">
</Component>
</NonVisualComponents>
<AuxValues> <AuxValues>
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="1"/> <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="1"/>
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>

View File

@ -373,7 +373,6 @@ final public class VisualizationPanel extends JPanel {
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() { private void initComponents() {
jSeparator4 = new JSeparator();
borderLayoutPanel = new JPanel(); borderLayoutPanel = new JPanel();
placeHolderPanel = new JPanel(); placeHolderPanel = new JPanel();
jTextArea1 = new JTextArea(); jTextArea1 = new JTextArea();
@ -857,7 +856,6 @@ final public class VisualizationPanel extends JPanel {
private JToolBar.Separator jSeparator1; private JToolBar.Separator jSeparator1;
private JToolBar.Separator jSeparator2; private JToolBar.Separator jSeparator2;
private JToolBar.Separator jSeparator3; private JToolBar.Separator jSeparator3;
private JSeparator jSeparator4;
private JTextArea jTextArea1; private JTextArea jTextArea1;
private JFXPanel notificationsJFXPanel; private JFXPanel notificationsJFXPanel;
private JPanel placeHolderPanel; private JPanel placeHolderPanel;

View File

@ -33,7 +33,8 @@ import javax.swing.SwingUtilities;
* https://tips4java.wordpress.com/2008/11/06/wrap-layout/ * https://tips4java.wordpress.com/2008/11/06/wrap-layout/
*/ */
public class WrapLayout extends FlowLayout { public class WrapLayout extends FlowLayout {
private static final long serialVersionUID = 1L;
/** /**
* Constructs a new <code>WrapLayout</code> with a left alignment and a * Constructs a new <code>WrapLayout</code> with a left alignment and a
* default 5-unit horizontal and vertical gap. * default 5-unit horizontal and vertical gap.