Skip to content

Commit

Permalink
1、完善获取参数名称
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Jul 25, 2024
1 parent 7916eb9 commit 277b06e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public String getName() {
}

public String[] getParameterNames() {
if (isSuspend){
if (isSuspend && mParamNames.length > 0){
String[] newNames = new String[mParamNames.length - 1];
System.arraycopy(mParamNames, 0, newNames, 0, newNames.length);
return newNames;
Expand Down

0 comments on commit 277b06e

Please sign in to comment.