core: reformat code and fix small issues in BinaryXMLParser
This commit is contained in:
@@ -8,17 +8,10 @@ import java.io.File;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
//import jadx.core.xmlgen.BinaryXMLParser;
|
||||
|
||||
public class JadxCLI {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(JadxCLI.class);
|
||||
|
||||
public static void main(String[] args) throws JadxException {
|
||||
/*
|
||||
BinaryXMLParser bxp = new BinaryXMLParser(args[0],args[1]);
|
||||
bxp.parse();
|
||||
System.exit(4);
|
||||
*/
|
||||
try {
|
||||
JadxCLIArgs jadxArgs = new JadxCLIArgs();
|
||||
if (processArgs(jadxArgs, args)) {
|
||||
|
||||
@@ -47,7 +47,7 @@ public final class JadxCLIArgs implements IJadxArgs {
|
||||
@Parameter(names = {"-h", "--help"}, description = "print this help", help = true)
|
||||
protected boolean printHelp = false;
|
||||
|
||||
@Parameter(names = {"-x", "--xml"}, description = "try to decode the AndroidManifest.xml, save at current dir")
|
||||
@Parameter(names = {"-x", "--xml"}, description = "try to decode the AndroidManifest.xml")
|
||||
protected boolean xmlTest = false;
|
||||
|
||||
private final List<File> input = new ArrayList<File>(1);
|
||||
|
||||
Reference in New Issue
Block a user