This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 5b5d7465c7b [Minor] Remove useless ')' for ConfigProperty.toString
(#10208)
5b5d7465c7b is described below
commit 5b5d7465c7b8f873fb6aabedd8846221b2709fa1
Author: hehuiyuan <[email protected]>
AuthorDate: Thu Nov 30 10:24:17 2023 +0800
[Minor] Remove useless ')' for ConfigProperty.toString (#10208)
---
.../src/main/java/org/apache/hudi/common/config/ConfigProperty.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-common/src/main/java/org/apache/hudi/common/config/ConfigProperty.java
b/hudi-common/src/main/java/org/apache/hudi/common/config/ConfigProperty.java
index d4ed193a041..aa2cf642309 100644
---
a/hudi-common/src/main/java/org/apache/hudi/common/config/ConfigProperty.java
+++
b/hudi-common/src/main/java/org/apache/hudi/common/config/ConfigProperty.java
@@ -233,7 +233,7 @@ public class ConfigProperty<T> implements Serializable {
@Override
public String toString() {
return String.format(
- "Key: '%s' , default: %s , isAdvanced: %s , description: %s since
version: %s deprecated after: %s)",
+ "Key: '%s' , default: %s , isAdvanced: %s , description: %s since
version: %s deprecated after: %s",
key, defaultValue, advanced, doc, sinceVersion.isPresent() ?
sinceVersion.get() : "version is not defined",
deprecatedVersion.isPresent() ? deprecatedVersion.get() : "version is
not defined");
}