mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-29 18:52:13 +01:00
Boards manager, nightly core support: missing negation on String.empty() made check report an opposite result
This commit is contained in:
parent
03a66b1035
commit
0ad73ebed3
@ -91,7 +91,7 @@ public class DownloadableContributionsDownloader {
|
|||||||
|
|
||||||
String algo = checksum.split(":")[0];
|
String algo = checksum.split(":")[0];
|
||||||
|
|
||||||
return algo != null && algo.isEmpty();
|
return algo != null && !algo.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void download(URL url, File tmpFile, Progress progress, String statusText) throws Exception {
|
public void download(URL url, File tmpFile, Progress progress, String statusText) throws Exception {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user