mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 13:19:46 +00:00
print a -> b to stderr
--HG-- branch : 0.0.9.x
This commit is contained in:
parent
59dfa00154
commit
1bb0a2e8eb
@ -99,7 +99,7 @@ public class Dex2jarCmd extends BaseCmd {
|
||||
|
||||
for (String fileName : remainingArgs) {
|
||||
File file = output == null ? new File(FilenameUtils.getBaseName(fileName) + "-dex2jar.jar") : output;
|
||||
System.out.println("dex2jar " + fileName + " -> " + file);
|
||||
System.err.println("dex2jar " + fileName + " -> " + file);
|
||||
|
||||
DexFileReader reader = new DexFileReader(new File(fileName));
|
||||
DexExceptionHandlerImpl handler = notHandleException ? null : new DexExceptionHandlerImpl()
|
||||
|
Loading…
Reference in New Issue
Block a user