未验证 提交 3bf93f1f 编写于 作者: S skylot 提交者: GitHub

Merge pull request #323 from FlXME/patch-2

Directory Bug
......@@ -57,7 +57,7 @@ public class FileUtils {
public static void makeDirs(@Nullable File dir) {
if (dir != null) {
synchronized (MKDIR_SYNC) {
if (!dir.exists() && !dir.mkdirs()) {
if (!dir.mkdirs() && !dir.isDirectory()) {
throw new JadxRuntimeException("Can't create directory " + dir);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册