You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/ibm/northstar/CodeAnalyzer.java
+6-9Lines changed: 6 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,11 @@
29
29
importjava.io.File;
30
30
importjava.io.FileWriter;
31
31
importjava.io.IOException;
32
-
importjava.nio.charset.StandardCharsets;
33
32
importjava.nio.file.Files;
34
33
importjava.nio.file.Path;
35
34
importjava.nio.file.Paths;
36
35
importjava.util.List;
37
36
importjava.util.Map;
38
-
importjava.util.zip.GZIPOutputStream;
39
37
40
38
/**
41
39
* The type Code analyzer.
@@ -61,9 +59,6 @@ public class CodeAnalyzer implements Runnable {
61
59
@Option(names = {"-a", "--analysis-level"}, description = "Level of analysis to perform. Options: 1 (for just symbol table) or 2 (for call graph). Default: 1")
62
60
privatestaticintanalysisLevel = 1;
63
61
64
-
@Option(names = {"-d", "--dependencies"}, description = "Path to the application 3rd party dependencies that may be helpful in analyzing the application.")
65
-
privatestaticStringdependencies;
66
-
67
62
@Option(names = {"-v", "--verbose"}, description = "Print logs to console.")
0 commit comments