You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2023/06/27 05:03:38 UTC

[shardingsphere] branch master updated: Refactor YamlDataNode (#26609)

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

zhonghongsheng 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 79c2df58d9f Refactor YamlDataNode (#26609)
79c2df58d9f is described below

commit 79c2df58d9f04eebcb89eb5a3bf17433af7b2e51
Author: Liang Zhang <zh...@apache.org>
AuthorDate: Tue Jun 27 13:03:32 2023 +0800

    Refactor YamlDataNode (#26609)
---
 .../apache/shardingsphere/infra/util/yaml/datanode/YamlDataNode.java | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/infra/util/src/main/java/org/apache/shardingsphere/infra/util/yaml/datanode/YamlDataNode.java b/infra/util/src/main/java/org/apache/shardingsphere/infra/util/yaml/datanode/YamlDataNode.java
index a8e90577f20..e3c25631f5d 100644
--- a/infra/util/src/main/java/org/apache/shardingsphere/infra/util/yaml/datanode/YamlDataNode.java
+++ b/infra/util/src/main/java/org/apache/shardingsphere/infra/util/yaml/datanode/YamlDataNode.java
@@ -20,8 +20,11 @@ package org.apache.shardingsphere.infra.util.yaml.datanode;
 import lombok.Getter;
 import lombok.RequiredArgsConstructor;
 
-@Getter
+/**
+ * YAML data node.
+ */
 @RequiredArgsConstructor
+@Getter
 public final class YamlDataNode {
     
     private final String key;