SignatureHelper

This commit is contained in:
rusefillc 2020-10-04 13:29:41 -04:00
parent 43acff1de4
commit 3112e35425
1 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,8 @@ public class SignatureHelper {
}
public static void downloadIfNotAvailable(Pair<String, String> p) {
if (p == null)
return;
new File(LOCAL_INI).mkdirs();
String localIniFile = LOCAL_INI + File.separator + p.second;
File file = new File(localIniFile);