refactor: rename method collectArgsWithoutLoading into collectArgNodes in MethodNode (#2142)

This commit is contained in:
Skylot
2024-04-07 23:09:02 +01:00
parent 0f52077c5c
commit dbadbb01fc
5 changed files with 7 additions and 7 deletions
@@ -85,7 +85,7 @@ public final class FridaAction extends JNodeAction {
} else {
overload = "";
}
List<String> argNames = mth.collectArgsWithoutLoading().stream()
List<String> argNames = mth.collectArgNodes().stream()
.map(VarNode::getName).collect(Collectors.toList());
String args = String.join(", ", argNames);
String logArgs;