Skip to content

Commit

Permalink
fix: variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hizumiaoba committed Dec 23, 2021
1 parent 16c1739 commit 252cc50
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
35 changes: 35 additions & 0 deletions generated/database.json
Original file line number Diff line number Diff line change
Expand Up @@ -14517,5 +14517,40 @@
"level" : 30,
"notes" : 977,
"albumType" : "ALBUM A"
}, {
"attribute" : "クール",
"name" : "VOY@GER",
"difficulty" : "DEBUT",
"level" : 8,
"notes" : 132,
"albumType" : "Not-Implemented"
}, {
"attribute" : "クール",
"name" : "VOY@GER",
"difficulty" : "REGULAR",
"level" : 14,
"notes" : 206,
"albumType" : "Not-Implemented"
}, {
"attribute" : "クール",
"name" : "VOY@GER",
"difficulty" : "PRO",
"level" : 19,
"notes" : 486,
"albumType" : "Not-Implemented"
}, {
"attribute" : "クール",
"name" : "VOY@GER",
"difficulty" : "MASTER",
"level" : 27,
"notes" : 782,
"albumType" : "Not-Implemented"
}, {
"attribute" : "クール",
"name" : "VOY@GER",
"difficulty" : "MASTER+",
"level" : 30,
"notes" : 999,
"albumType" : "Not-implemented"
} ]
}
8 changes: 4 additions & 4 deletions src/com/ranfa/main/DelesteRandomSelector.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class DelesteRandomSelector extends JFrame {
private Logger logger = LoggerFactory.getLogger(DelesteRandomSelector.class);
private ManualUpdateThreadImpl impl;
private Thread manualUpdateThread;
private JButton btnNewButton;
private JButton btnManualUpdate;

/**
* Launch the application.
Expand Down Expand Up @@ -361,15 +361,15 @@ public DelesteRandomSelector() {
}
});

this.btnNewButton = new JButton(Messages.MSGManualUpdate.toString());
this.btnNewButton.addActionListener(e -> {
this.btnManualUpdate = new JButton(Messages.MSGManualUpdate.toString());
this.btnManualUpdate.addActionListener(e -> {
this.impl = new ManualUpdateThreadImpl();
this.manualUpdateThread = new Thread(this.impl);
this.manualUpdateThread.setName("ManualUpdate-thread");
this.manualUpdateThread.setDaemon(false);
this.manualUpdateThread.start();
});
this.panelEast.add(this.btnNewButton, "1, 9");
this.panelEast.add(this.btnManualUpdate, "1, 9");
this.panelEast.add(this.btnTwitterIntegration, "1, 11");

this.btnExit = new JButton(Messages.MSGTerminate.toString());
Expand Down

0 comments on commit 252cc50

Please sign in to comment.