replaced with EN assert (#11670)

This commit is contained in:
一个不知名的Java靓仔 2023-02-27 14:38:57 +08:00 committed by GitHub
parent 4be3c796cc
commit f8f89f2a71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}