mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GT-3354: Removing some Guava
This commit is contained in:
parent
3a6c3312fe
commit
2a64cf2a77
20 changed files with 91 additions and 155 deletions
|
@ -26,8 +26,6 @@
|
|||
|
||||
import java.util.*;
|
||||
|
||||
import com.google.common.collect.Iterators;
|
||||
|
||||
import ghidra.app.decompiler.*;
|
||||
import ghidra.app.decompiler.parallel.*;
|
||||
import ghidra.app.script.GhidraScript;
|
||||
|
@ -71,7 +69,7 @@ public class FindPotentialDecompilerProblems extends GhidraScript {
|
|||
|
||||
Set<Function> funcsToDecompile = new HashSet<>();
|
||||
FunctionIterator fIter = currentProgram.getFunctionManager().getFunctionsNoStubs(true);
|
||||
Iterators.addAll(funcsToDecompile, fIter);
|
||||
fIter.forEach(e -> funcsToDecompile.add(e));
|
||||
|
||||
if (funcsToDecompile.isEmpty()) {
|
||||
popup("No functions to decompile!");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue