Commit c4367e25 authored by YASME-Tim's avatar YASME-Tim

Removed call in main method.

parent e081aadd
......@@ -8,15 +8,15 @@ import java.io.File;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import jadx.core.xmlgen.BinaryXMLParser;
//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);
// BinaryXMLParser bxp = new BinaryXMLParser(args[0],args[1]);
// bxp.parse();
// System.exit(4);
try {
JadxCLIArgs jadxArgs = new JadxCLIArgs();
if (processArgs(jadxArgs, args)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment