Skip to content

Commit

Permalink
fix: swing gui
Browse files Browse the repository at this point in the history
  • Loading branch information
terminalsin committed Dec 15, 2024
1 parent 0da6d76 commit 4af18cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void startObfuscation() {

// Start obfuscation in background
startButton.setEnabled(false);
SwingWorker<Void, String> worker = new SwingWorker<>() {
SwingWorker<Void, String> worker = new SwingWorker() {
@Override
protected Void doInBackground() {
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public void startObfuscation() {

// Start obfuscation in background
startButton.setEnabled(false);
SwingWorker<Void, String> worker = new SwingWorker<>() {
SwingWorker<Void, String> worker = new SwingWorker() {
@Override
protected Void doInBackground() {
try {
Expand Down

0 comments on commit 4af18cf

Please sign in to comment.