chore: resolve some issues reported by sonar and lgtm

This commit is contained in:
Skylot
2020-10-28 14:10:12 +00:00
parent 92773417b3
commit e09e8e5823
9 changed files with 24 additions and 19 deletions
@@ -34,7 +34,7 @@ public class ConvertToClsSet {
usage();
System.exit(1);
}
List<Path> inputPaths = Stream.of(args).map(s -> Paths.get(s)).collect(Collectors.toList());
List<Path> inputPaths = Stream.of(args).map(Paths::get).collect(Collectors.toList());
Path output = inputPaths.remove(0);
JadxPluginManager pluginManager = new JadxPluginManager();