This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/3.0 by this push:
     new f66527a73a Remove to rpcInvocation string (#10441)
f66527a73a is described below

commit f66527a73a381972f747cdc2337eedc62a5d9772
Author: Albumen Kevin <[email protected]>
AuthorDate: Thu Aug 11 11:54:57 2022 +0800

    Remove to rpcInvocation string (#10441)
---
 .../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 156b8172d5..34d08ed767 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
@@ -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) + "]";
     }
 
 }

Reply via email to