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/04/02 15:35:21 UTC

[shardingsphere] branch master updated: Remove YamlReadwriteSplittingStrategyConfiguration (#24962)

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 fd35bb78a51 Remove YamlReadwriteSplittingStrategyConfiguration (#24962)
fd35bb78a51 is described below

commit fd35bb78a51d768717eb0ff1fbf02083e2fa14eb
Author: Liang Zhang <zh...@apache.org>
AuthorDate: Sun Apr 2 23:35:14 2023 +0800

    Remove YamlReadwriteSplittingStrategyConfiguration (#24962)
---
 ...amlReadwriteSplittingStrategyConfiguration.java | 32 ----------------------
 1 file changed, 32 deletions(-)

diff --git a/features/readwrite-splitting/core/src/main/java/org/apache/shardingsphere/readwritesplitting/yaml/config/strategy/YamlReadwriteSplittingStrategyConfiguration.java b/features/readwrite-splitting/core/src/main/java/org/apache/shardingsphere/readwritesplitting/yaml/config/strategy/YamlReadwriteSplittingStrategyConfiguration.java
deleted file mode 100644
index e500e71c54c..00000000000
--- a/features/readwrite-splitting/core/src/main/java/org/apache/shardingsphere/readwritesplitting/yaml/config/strategy/YamlReadwriteSplittingStrategyConfiguration.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.shardingsphere.readwritesplitting.yaml.config.strategy;
-
-import lombok.Getter;
-import lombok.Setter;
-import org.apache.shardingsphere.infra.util.yaml.YamlConfiguration;
-
-/**
- * Readwrite-splitting strategy configuration for YAML.
- */
-@Getter
-@Setter
-public final class YamlReadwriteSplittingStrategyConfiguration implements YamlConfiguration {
-    
-    private YamlStaticReadwriteSplittingStrategyConfiguration staticStrategy;
-}