Skip to content

Commit

Permalink
fix: exports resources first (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
bagipro authored and skylot committed Oct 24, 2018
1 parent 2de86b6 commit 87f50ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jadx-core/src/main/java/jadx/api/JadxDecompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ private ExecutorService getSaveExecutor(boolean saveSources, boolean saveResourc
sourcesOutDir = args.getOutDirSrc();
resOutDir = args.getOutDirRes();
}
if (saveSources) {
appendSourcesSave(executor, sourcesOutDir);
}
if (saveResources) {
appendResourcesSave(executor, resOutDir);
}
if (saveSources) {
appendSourcesSave(executor, sourcesOutDir);
}
return executor;
}

Expand Down

0 comments on commit 87f50ab

Please sign in to comment.