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 2022/12/04 02:19:11 UTC

[shardingsphere] branch master updated: Remove unused class. (#22621)

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 83038b5dcf6 Remove unused class. (#22621)
83038b5dcf6 is described below

commit 83038b5dcf6723343e89c75858a79f6376adb06e
Author: Chuxin Chen <ch...@qq.com>
AuthorDate: Sun Dec 4 10:19:04 2022 +0800

    Remove unused class. (#22621)
---
 .../infra/hint/SQLHintProperties.java              | 32 ----------------------
 1 file changed, 32 deletions(-)

diff --git a/infra/common/src/main/java/org/apache/shardingsphere/infra/hint/SQLHintProperties.java b/infra/common/src/main/java/org/apache/shardingsphere/infra/hint/SQLHintProperties.java
deleted file mode 100644
index 0f14d3205d4..00000000000
--- a/infra/common/src/main/java/org/apache/shardingsphere/infra/hint/SQLHintProperties.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.infra.hint;
-
-import org.apache.shardingsphere.infra.util.props.TypedProperties;
-
-import java.util.Properties;
-
-/**
- * SQL Hint properties.
- */
-public final class SQLHintProperties extends TypedProperties<SQLHintPropertiesKey> {
-    
-    public SQLHintProperties(final Properties props) {
-        super(SQLHintPropertiesKey.class, props);
-    }
-}