Skip to content

Commit

Permalink
Remove redundant keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 9, 2024
1 parent 65bd198 commit d93052b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/java/org/apache/bcel/verifier/VerifyDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ final class IvjEventHandler implements ActionListener {

@Override
public void actionPerformed(final ActionEvent e) {
if (e.getSource() == VerifyDialog.this.getPass1Button()) {
if (e.getSource() == getPass1Button()) {
connEtoC1(e);
}
if (e.getSource() == VerifyDialog.this.getPass2Button()) {
if (e.getSource() == getPass2Button()) {
connEtoC2(e);
}
if (e.getSource() == VerifyDialog.this.getPass3Button()) {
if (e.getSource() == getPass3Button()) {
connEtoC3(e);
}
if (e.getSource() == VerifyDialog.this.getFlushButton()) {
if (e.getSource() == getFlushButton()) {
connEtoC4(e);
}
}
Expand Down Expand Up @@ -196,7 +196,7 @@ private void connEtoC1(final ActionEvent arg1) {
try {
// user code begin {1}
// user code end
this.pass1Button_ActionPerformed(arg1);
pass1Button_ActionPerformed(arg1);
// user code begin {2}
// user code end
} catch (final Throwable ivjExc) {
Expand All @@ -211,7 +211,7 @@ private void connEtoC2(final ActionEvent arg1) {
try {
// user code begin {1}
// user code end
this.pass2Button_ActionPerformed(arg1);
pass2Button_ActionPerformed(arg1);
// user code begin {2}
// user code end
} catch (final Throwable ivjExc) {
Expand All @@ -226,7 +226,7 @@ private void connEtoC3(final ActionEvent arg1) {
try {
// user code begin {1}
// user code end
this.pass4Button_ActionPerformed(arg1);
pass4Button_ActionPerformed(arg1);
// user code begin {2}
// user code end
} catch (final Throwable ivjExc) {
Expand All @@ -241,7 +241,7 @@ private void connEtoC4(final ActionEvent arg1) {
try {
// user code begin {1}
// user code end
this.flushButton_ActionPerformed(arg1);
flushButton_ActionPerformed(arg1);
// user code begin {2}
// user code end
} catch (final Throwable ivjExc) {
Expand Down

0 comments on commit d93052b

Please sign in to comment.