Remove to rpcInvocation string (#10441)

This commit is contained in:
Albumen Kevin 2022-08-11 11:54:57 +08:00 committed by GitHub
parent fc02eaf1cb
commit f66527a73a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -669,8 +669,7 @@ public class RpcInvocation implements Invocation, Serializable {
@Override
public String toString() {
return "RpcInvocation [methodName=" + methodName + ", parameterTypes="
+ Arrays.toString(parameterTypes) + ", arguments=" + Arrays.toString(arguments)
+ ", attachments=" + attachments + "]";
+ Arrays.toString(parameterTypes) + "]";
}
}