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
@@ -253,7 +253,7 @@ public class MethodNode extends NotificationAttrNode implements IMethodDetails,
return mthInfo.getReturnType().equals(ArgType.VOID);
}
public List<VarNode> collectArgsWithoutLoading() {
public List<VarNode> collectArgNodes() {
ICodeInfo codeInfo = getTopParentClass().getCode();
int mthDefPos = getDefPosition();
int lineEndPos = CodeUtils.getLineEndForPos(codeInfo.getCodeStr(), mthDefPos);