This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/master by this push:
new cac475008c [2.7] Remove to rpcInvocation string (#10460)
cac475008c is described below
commit cac475008cf42ccc7c916bbd9525870de9b650bd
Author: Albumen Kevin <[email protected]>
AuthorDate: Mon Aug 15 14:44:45 2022 +0800
[2.7] Remove to rpcInvocation string (#10460)
---
.../src/main/java/org/apache/dubbo/rpc/RpcInvocation.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/RpcInvocation.java
b/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/RpcInvocation.java
index f94c001989..508a475702 100644
---
a/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/RpcInvocation.java
+++
b/dubbo-rpc/dubbo-rpc-api/src/main/java/org/apache/dubbo/rpc/RpcInvocation.java
@@ -440,8 +440,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) + "]";
}
}