Boards manager, nightly core support: missing negation on String.empty() made check report an opposite result

This commit is contained in:
Federico Fissore 2015-07-08 14:45:26 +02:00
parent 03a66b1035
commit 0ad73ebed3
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public class DownloadableContributionsDownloader {
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 {