From 9c2ce7a584f613b7ade4b15657e94de3d8c34ed5 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Thu, 2 Mar 2023 02:15:59 +0100 Subject: [PATCH] Remove utils.config.Configured This interface is not implmmented, remove it. Change-Id: I64cf1069708aa2d766b58afe64c03bfa0282e33e JIRA: CONTROLLER-2071 Signed-off-by: Robert Varga --- .../io/atomix/utils/config/Configured.java | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 third-party/atomix/utils/src/main/java/io/atomix/utils/config/Configured.java diff --git a/third-party/atomix/utils/src/main/java/io/atomix/utils/config/Configured.java b/third-party/atomix/utils/src/main/java/io/atomix/utils/config/Configured.java deleted file mode 100644 index 9c04a0338c..0000000000 --- a/third-party/atomix/utils/src/main/java/io/atomix/utils/config/Configured.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright 2018-present Open Networking Foundation - * - * Licensed 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 io.atomix.utils.config; - -/** - * Interface for objects configured via a configuration object. - */ -public interface Configured { - - /** - * Returns the object configuration. - * - * @return the object configuration - */ - T config(); - -} -- 2.36.6