This is an automated email from the ASF dual-hosted git repository.
jianglongtao 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 8ac38ee5453 Remove useless class (#27618)
8ac38ee5453 is described below
commit 8ac38ee5453fcfbdc80b15af7fd6ea1ab2ef65c6
Author: ChenJiaHao <[email protected]>
AuthorDate: Wed Aug 2 07:32:23 2023 +0800
Remove useless class (#27618)
---
.../metadata/nodepath/BroadcastNodePath.java | 44 ----------------------
1 file changed, 44 deletions(-)
diff --git
a/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java
b/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java
deleted file mode 100644
index df91c0cc15b..00000000000
---
a/features/broadcast/core/src/main/java/org/apache/shardingsphere/broadcast/metadata/nodepath/BroadcastNodePath.java
+++ /dev/null
@@ -1,44 +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.broadcast.metadata.nodepath;
-
-import lombok.AccessLevel;
-import lombok.NoArgsConstructor;
-import org.apache.shardingsphere.infra.metadata.nodepath.RuleNodePath;
-
-import java.util.Collections;
-
-/**
- * Broadcast node path.
- */
-@NoArgsConstructor(access = AccessLevel.PRIVATE)
-public final class BroadcastNodePath {
-
- public static final String TABLES = "tables";
-
- private static final RuleNodePath INSTANCE = new RuleNodePath("broadcast",
Collections.emptyList(), Collections.singleton(TABLES));
-
- /**
- * Get instance of rule node path.
- *
- * @return got instance
- */
- public static RuleNodePath getInstance() {
- return INSTANCE;
- }
-}