GT-2942 - Search Text Preview - fixed bug that causes some separator

tokens to not appear in the Search Text Preview column
This commit is contained in:
dragonmacher 2019-06-18 15:27:57 -04:00
parent afc772c87c
commit f5f6b7c18b
4 changed files with 57 additions and 50 deletions

View file

@ -24,7 +24,6 @@ import ghidra.program.model.address.*;
import ghidra.program.model.listing.Function;
import ghidra.program.model.listing.Program;
import ghidra.program.model.pcode.*;
import ghidra.util.Msg;
public class DecompilerUtils {
@ -315,11 +314,6 @@ public class DecompilerUtils {
int nchild = parentNode.numChildren();
for (int i = 0; i < nchild; i++) {
ClangNode node = parentNode.Child(i);
if (node instanceof ClangFuncProto) {
Msg.debug(null, "");
}
if (node.numChildren() > 0) {
collectTokens(tokenList, node, addressSet);
}