File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/org/intellij/erlang/eunit/ui Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ public class ErlangUnitRunConfigurationEditorForm extends ErlangDebuggableRunCon
4444 private JLabel myErlangModulesLabel ;
4545 private JLabel myErlangFunctionsLabel ;
4646 private JComboBox myTestKindComboBox ;
47+ @ SuppressWarnings ("unused" )
4748 private HideableTitledPanel myDebugOptionsHideablePanel ;
4849 private TextFieldWithBrowseButton myWorkingDirectoryComponent ;
4950
@@ -67,9 +68,11 @@ protected void doResetEditorFrom(ErlangUnitRunConfiguration configuration) {
6768 myTestKindComboBox .removeAllItems ();
6869 ErlangUnitRunConfiguration .ErlangUnitRunConfigurationKind [] kinds = ErlangUnitRunConfiguration .ErlangUnitRunConfigurationKind .values ();
6970 for (ErlangUnitRunConfiguration .ErlangUnitRunConfigurationKind kind : kinds ) {
71+ //noinspection unchecked
7072 myTestKindComboBox .addItem (kind );
7173 }
7274 myTestKindComboBox .setSelectedItem (configData .getKind ());
75+ //noinspection unchecked
7376 myTestKindComboBox .setRenderer (getTestKindListCellRendererWrapper ());
7477
7578 myErlangModulesField .setText (getCommaSeparatedNamesString (configData .getModuleNames ()));
You can’t perform that action at this time.
0 commit comments