fix: add missing import for class generics map (PR #480)

* Fix missing import for class Generics map.
* Add import only when needed (in non-inner class declaration)
* Remove unneeded import
This commit is contained in:
Ahmed Ashour
2019-03-21 15:11:56 +01:00
committed by skylot
parent 9797fe5b81
commit dd2e7e879b
5 changed files with 49 additions and 5 deletions
@@ -107,7 +107,7 @@ public class JadxCLIArgs {
return process(jcw);
}
private boolean process(JCommanderWrapper jcw) {
private boolean process(JCommanderWrapper<?> jcw) {
if (printHelp) {
jcw.printUsage();
return false;