This is an automated email from the ASF dual-hosted git repository.
earthchen pushed a commit to branch 3.1
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.1 by this push:
new f8f89f2a71 replaced with EN assert (#11670)
f8f89f2a71 is described below
commit f8f89f2a712b8cc61f542c19f24e410e650eb8da
Author: 一个不知名的Java靓仔 <[email protected]>
AuthorDate: Mon Feb 27 14:38:57 2023 +0800
replaced with EN assert (#11670)
---
.../org/apache/dubbo/rpc/protocol/tri/TripleCustomerProtocolWapper.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/TripleCustomerProtocolWapper.java
b/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/TripleCustomerProtocolWapper.java
index 78eb166f60..e9479375f3 100644
---
a/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/TripleCustomerProtocolWapper.java
+++
b/dubbo-rpc/dubbo-rpc-triple/src/main/java/org/apache/dubbo/rpc/protocol/tri/TripleCustomerProtocolWapper.java
@@ -344,7 +344,7 @@ public class TripleCustomerProtocolWapper {
}
public Builder addArgTypes(String argsType) {
- Assert.notEmptyString(argsType, "argsType不能为空");
+ Assert.notEmptyString(argsType, "argsType cannot be empty.");
argTypes.add(argsType);
return this;
}