Remove utils.config.Configured 86/104686/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 2 Mar 2023 01:15:59 +0000 (02:15 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 2 Mar 2023 01:15:59 +0000 (02:15 +0100)
This interface is not implmmented, remove it.

Change-Id: I64cf1069708aa2d766b58afe64c03bfa0282e33e
JIRA: CONTROLLER-2071
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
third-party/atomix/utils/src/main/java/io/atomix/utils/config/Configured.java [deleted file]

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 (file)
index 9c04a03..0000000
+++ /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<T extends Config> {
-
-  /**
-   * Returns the object configuration.
-   *
-   * @return the object configuration
-   */
-  T config();
-
-}