Hacky fix FileNotFoundException if file name ends with space (issue #1145)

This commit is contained in:
Andrei Zhukouski 2016-01-26 11:02:19 +03:00
parent 114af9799d
commit ce66e17ee0

View File

@ -151,7 +151,7 @@ public class Main {
// make out folder manually using name of apk
String outName = apkName;
outName = outName.endsWith(".apk") ? outName.substring(0,
outName.length() - 4) : outName + ".out";
outName.length() - 4).trim() : outName + ".out";
// make file from path
outName = new File(outName).getName();