You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by su...@apache.org on 2023/03/17 02:50:37 UTC

[shardingsphere] branch master updated: fix javadoc error (#24657)

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

sunnianjun 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 72e046862ee fix javadoc error (#24657)
72e046862ee is described below

commit 72e046862ee548aadb181b0b737c830100819f15
Author: jiangML <10...@qq.com>
AuthorDate: Fri Mar 17 10:50:29 2023 +0800

    fix javadoc error (#24657)
    
    * fix javadoc error
    
    * update doc
---
 .../org/apache/shardingsphere/agent/core/yaml/AgentYamlEngine.java     | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/agent/core/src/main/java/org/apache/shardingsphere/agent/core/yaml/AgentYamlEngine.java b/agent/core/src/main/java/org/apache/shardingsphere/agent/core/yaml/AgentYamlEngine.java
index c0002ea58b2..c5187528e06 100644
--- a/agent/core/src/main/java/org/apache/shardingsphere/agent/core/yaml/AgentYamlEngine.java
+++ b/agent/core/src/main/java/org/apache/shardingsphere/agent/core/yaml/AgentYamlEngine.java
@@ -23,7 +23,6 @@ import org.apache.shardingsphere.agent.core.advisor.config.yaml.entity.YamlAdvis
 import org.apache.shardingsphere.agent.core.plugin.config.yaml.entity.YamlAgentConfiguration;
 import org.yaml.snakeyaml.Yaml;
 
-import java.io.IOException;
 import java.io.InputStream;
 
 /**
@@ -37,7 +36,6 @@ public final class AgentYamlEngine {
      *
      * @param inputStream input stream
      * @return YAML agent configuration
-     * @throws IOException IO Exception
      */
     public static YamlAgentConfiguration unmarshalYamlAgentConfiguration(final InputStream inputStream) {
         return new Yaml(new AgentYamlConstructor(YamlAgentConfiguration.class)).loadAs(inputStream, YamlAgentConfiguration.class);
@@ -48,7 +46,6 @@ public final class AgentYamlEngine {
      *
      * @param inputStream input stream
      * @return YAML advisors configuration
-     * @throws IOException IO Exception
      */
     public static YamlAdvisorsConfiguration unmarshalYamlAdvisorsConfiguration(final InputStream inputStream) {
         return new Yaml(new AgentYamlConstructor(YamlAdvisorsConfiguration.class)).loadAs(inputStream, YamlAdvisorsConfiguration.class);