File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/jdk/javax/swing/ButtonGroup Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ public void run() {
6767 checkBox1 = new JCheckBox ("1" );
6868 checkBox2 = new JCheckBox ("2" );
6969
70- toggleButton1 .addActionListener ((_ ) -> toggleButtonActionPerformed = true );
71- toggleButton2 .addActionListener ((_ ) -> toggleButtonActionPerformed = true );
70+ toggleButton1 .addActionListener ((x ) -> toggleButtonActionPerformed = true );
71+ toggleButton2 .addActionListener ((x ) -> toggleButtonActionPerformed = true );
7272
73- checkBox1 .addActionListener ((_ ) -> checkboxActionPerformed = true );
74- checkBox2 .addActionListener ((_ ) -> checkboxActionPerformed = true );
73+ checkBox1 .addActionListener ((x ) -> checkboxActionPerformed = true );
74+ checkBox2 .addActionListener ((x ) -> checkboxActionPerformed = true );
7575
7676 ButtonGroup toggleGroup = new ButtonGroup ();
7777 toggleGroup .add (toggleButton1 );
You can’t perform that action at this time.
0 commit comments