6457 make button groups local variables to satisfy codacy

This commit is contained in:
William Schaefer 2020-06-24 19:01:39 -04:00
parent 58fe4c8c2b
commit 7b41f84b2c
2 changed files with 10 additions and 4 deletions

View File

@ -38,8 +38,16 @@
</Properties> </Properties>
</Component> </Component>
<Component class="javax.swing.ButtonGroup" name="includeButtonGroup"> <Component class="javax.swing.ButtonGroup" name="includeButtonGroup">
<AuxValues>
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
<AuxValue name="JavaCodeGenerator_VariableModifier" type="java.lang.Integer" value="0"/>
</AuxValues>
</Component> </Component>
<Component class="javax.swing.ButtonGroup" name="pathTypeButtonGroup"> <Component class="javax.swing.ButtonGroup" name="pathTypeButtonGroup">
<AuxValues>
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
<AuxValue name="JavaCodeGenerator_VariableModifier" type="java.lang.Integer" value="0"/>
</AuxValues>
</Component> </Component>
</NonVisualComponents> </NonVisualComponents>
<Properties> <Properties>

View File

@ -66,8 +66,8 @@ final class ParentFolderFilterPanel extends AbstractDiscoveryFilterPanel {
parentCheckbox = new javax.swing.JCheckBox(); parentCheckbox = new javax.swing.JCheckBox();
parentLabel = new javax.swing.JLabel(); parentLabel = new javax.swing.JLabel();
includeButtonGroup = new javax.swing.ButtonGroup(); javax.swing.ButtonGroup includeButtonGroup = new javax.swing.ButtonGroup();
pathTypeButtonGroup = new javax.swing.ButtonGroup(); javax.swing.ButtonGroup pathTypeButtonGroup = new javax.swing.ButtonGroup();
parentScrollPane = new javax.swing.JScrollPane(); parentScrollPane = new javax.swing.JScrollPane();
parentList = new javax.swing.JList<>(); parentList = new javax.swing.JList<>();
fullRadioButton = new javax.swing.JRadioButton(); fullRadioButton = new javax.swing.JRadioButton();
@ -227,14 +227,12 @@ final class ParentFolderFilterPanel extends AbstractDiscoveryFilterPanel {
private javax.swing.JButton deleteButton; private javax.swing.JButton deleteButton;
private javax.swing.JRadioButton excludeRadioButton; private javax.swing.JRadioButton excludeRadioButton;
private javax.swing.JRadioButton fullRadioButton; private javax.swing.JRadioButton fullRadioButton;
private javax.swing.ButtonGroup includeButtonGroup;
private javax.swing.JRadioButton includeRadioButton; private javax.swing.JRadioButton includeRadioButton;
private javax.swing.JCheckBox parentCheckbox; private javax.swing.JCheckBox parentCheckbox;
private javax.swing.JLabel parentLabel; private javax.swing.JLabel parentLabel;
private javax.swing.JList<ParentSearchTerm> parentList; private javax.swing.JList<ParentSearchTerm> parentList;
private javax.swing.JScrollPane parentScrollPane; private javax.swing.JScrollPane parentScrollPane;
private javax.swing.JTextField parentTextField; private javax.swing.JTextField parentTextField;
private javax.swing.ButtonGroup pathTypeButtonGroup;
private javax.swing.JRadioButton substringRadioButton; private javax.swing.JRadioButton substringRadioButton;
// End of variables declaration//GEN-END:variables // End of variables declaration//GEN-END:variables