This is an automated email from the ASF dual-hosted git repository.
zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 23cd05472fe Revise javadoc on JobDataNodeLine (#32713)
23cd05472fe is described below
commit 23cd05472febe746a84cc273f494439759a6a355
Author: Liang Zhang <[email protected]>
AuthorDate: Wed Aug 28 19:20:21 2024 +0800
Revise javadoc on JobDataNodeLine (#32713)
---
.../shardingsphere/data/pipeline/core/datanode/JobDataNodeLine.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/datanode/JobDataNodeLine.java
b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/datanode/JobDataNodeLine.java
index 69b8f22a39e..1c0094ab30e 100644
---
a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/datanode/JobDataNodeLine.java
+++
b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/core/datanode/JobDataNodeLine.java
@@ -45,8 +45,8 @@ public final class JobDataNodeLine {
/**
* Unmarshal from text.
*
- * @param text marshalled line
- * @return line
+ * @param text marshaled line
+ * @return unmarshalled job data node line
*/
public static JobDataNodeLine unmarshal(final String text) {
return new
JobDataNodeLine(Splitter.on('|').omitEmptyStrings().splitToList(text).stream().map(JobDataNodeEntry::unmarshal).collect(Collectors.toList()));