mirror of
https://github.com/revanced/smali.git
synced 2025-05-04 08:34:25 +02:00
Fixed an issue with the the --dump-to option, where it would always dump to classes.dump, regardless of the filename provided on the commandline
git-svn-id: https://smali.googlecode.com/svn/trunk@193 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
2b7d3ebb66
commit
cae10ef11f
@ -144,7 +144,7 @@ public class smali
|
||||
if (dumpFilename != null) {
|
||||
out.finishAnnotating();
|
||||
|
||||
FileWriter fileWriter = new FileWriter("classes.dump");
|
||||
FileWriter fileWriter = new FileWriter(dumpFilename);
|
||||
out.writeAnnotationsTo(fileWriter);
|
||||
fileWriter.close();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user