We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61b2873 commit 5a2c0bbCopy full SHA for 5a2c0bb
io.sloeber.ui/src/io/sloeber/ui/preferences/LibrarySelectionPage.java
@@ -79,8 +79,8 @@ protected Control createContents(Composite parent) {
79
80
@Override
81
public boolean performOk() {
82
- if (isJobRunning == false) {
83
- isJobRunning = true;
+ if (this.isJobRunning == false) {
+ this.isJobRunning = true;
84
new Job(Messages.ui_Adopting_arduino_libraries) {
85
86
protected IStatus run(IProgressMonitor monitor) {
@@ -90,9 +90,8 @@ protected IStatus run(IProgressMonitor monitor) {
90
}
91
}.schedule();
92
return true;
93
- } else {
94
- return false;
95
+ return false;
96
97
98
public void createTree(Composite parent) {
0 commit comments